diff options
| author | 8cy <[email protected]> | 2020-05-16 06:34:54 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-05-16 06:34:54 -0700 |
| commit | 5ad3fa1a6a07609e8c26042b1121f1d03a972e15 (patch) | |
| tree | b5d244d2f8ca8701c8c8046bc35be3df5874db22 /views/index.ejs | |
| parent | big boi changes (diff) | |
| download | slog-master.tar.xz slog-master.zip | |
also add admin panel to profile
Diffstat (limited to 'views/index.ejs')
| -rw-r--r-- | views/index.ejs | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/views/index.ejs b/views/index.ejs index c3071d3..4f86498 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -60,7 +60,7 @@ <script src="js/main.js"></script> </head> <body> - <!-- Visable Scripts --> + <!-- Visible Scripts --> <nav class="navbar navbar-expand-lg bg-transparent hideme" id="navbar-remove"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> @@ -77,6 +77,9 @@ <li class="nav-item active"> <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> </li> + <li class="nav-item"> + <a href="/marketplace" class="nav-link">Marketplace Beta</a> + </li> <!--<li class="nav-item"> <a class="nav-link" href="/discord/bots/uwufier/about/">About</a> </li>--> @@ -325,7 +328,7 @@ </tbody> </table> </div> - <% } %> + <% } %> <% if (req.session.exampleVideo) { %> <div class="example-video__container hideme" style="position: fixed; bottom: 25px; left: 25px;"> @@ -364,5 +367,13 @@ </script> <script src="https://code.jquery.com/jquery-3.5.0.min.js" integrity="sha256-xNzN2a4ltkB44Mc/Jz3pT4iU1cmeR0FkXs4pru/JxaQ=" crossorigin="anonymous"></script> + <script> + $('tbody').each(function() { + const list = $(this).children('tr'); + $(this).html(list.get().reverse()) + }); + + // if you are seeing this, this took way to long to complete. + </script> </body> </html>
\ No newline at end of file |