diff options
Diffstat (limited to 'client/html')
| -rw-r--r-- | client/html/help.tpl | 2 | ||||
| -rw-r--r-- | client/html/help_search.tpl | 2 | ||||
| -rw-r--r-- | client/html/manual_pager_nav.tpl | 2 | ||||
| -rw-r--r-- | client/html/tag.tpl | 2 | ||||
| -rw-r--r-- | client/html/top_nav.tpl | 2 | ||||
| -rw-r--r-- | client/html/user.tpl | 2 | ||||
| -rw-r--r-- | client/html/user_summary.tpl | 4 |
7 files changed, 8 insertions, 8 deletions
diff --git a/client/html/help.tpl b/client/html/help.tpl index c187a29..5e80725 100644 --- a/client/html/help.tpl +++ b/client/html/help.tpl @@ -1,5 +1,5 @@ <div class='content-wrapper' id='help'> - <nav class='text-nav primary'><!-- + <nav class='buttons primary'><!-- --><ul><!-- --><li data-name='about'><a href='/help/about'>About</a></li><!-- --><li data-name='keyboard'><a href='/help/keyboard'>Keyboard</a></li><!-- diff --git a/client/html/help_search.tpl b/client/html/help_search.tpl index 8771e6b..8c22d73 100644 --- a/client/html/help_search.tpl +++ b/client/html/help_search.tpl @@ -1,4 +1,4 @@ -<nav class='text-nav secondary'><!-- +<nav class='buttons secondary'><!-- --><ul><!-- --><li data-name='default'><a href='/help/search'>General</a></li><!-- --><li data-name='posts'><a href='/help/search/posts'>Posts</a></li><!-- diff --git a/client/html/manual_pager_nav.tpl b/client/html/manual_pager_nav.tpl index 7530936..67c995b 100644 --- a/client/html/manual_pager_nav.tpl +++ b/client/html/manual_pager_nav.tpl @@ -1,4 +1,4 @@ -<nav class='text-nav'> +<nav class='buttons'> <ul> <li> <% if (ctx.prevLinkActive) { %> diff --git a/client/html/tag.tpl b/client/html/tag.tpl index f126063..63bd9da 100644 --- a/client/html/tag.tpl +++ b/client/html/tag.tpl @@ -1,6 +1,6 @@ <div class='content-wrapper tag'> <h1><%= ctx.tag.names[0] %></h1> - <nav class='text-nav'><!-- + <nav class='buttons'><!-- --><ul><!-- --><li data-name='summary'><a href='/tag/<%= ctx.tag.names[0] %>'>Summary</a></li><!-- --><% if (ctx.canMerge) { %><!-- diff --git a/client/html/top_nav.tpl b/client/html/top_nav.tpl index a997df4..75a7ad1 100644 --- a/client/html/top_nav.tpl +++ b/client/html/top_nav.tpl @@ -1,4 +1,4 @@ -<nav id='top-nav' class='text-nav'> +<nav id='top-nav' class='buttons'> <ul><!-- --><% _.each(ctx.items, (item, key) => { %><!-- --><% if (item.available) { %><!-- diff --git a/client/html/user.tpl b/client/html/user.tpl index 7360eec..d2c0257 100644 --- a/client/html/user.tpl +++ b/client/html/user.tpl @@ -1,6 +1,6 @@ <div class='content-wrapper' id='user'> <h1><%= ctx.user.name %></h1> - <nav class='text-nav'><!-- + <nav class='buttons'><!-- --><ul><!-- --><li data-name='summary'><a href='/user/<%= ctx.user.name %>'>Summary</a></li><!-- --><% if (ctx.canEditAnything) { %><!-- diff --git a/client/html/user_summary.tpl b/client/html/user_summary.tpl index 9d45ae8..436eddc 100644 --- a/client/html/user_summary.tpl +++ b/client/html/user_summary.tpl @@ -7,7 +7,7 @@ </ul> <div> - <nav class='plain-nav'> + <nav> <p><strong>Quick links</strong></p> <ul> <li><a href='/posts/text=submit:<%= ctx.user.name %>'><%= ctx.user.uploadedPostCount %> uploads</a></li> @@ -17,7 +17,7 @@ </nav> <% if (ctx.isLoggedIn) { %> - <nav class='plain-nav'> + <nav> <p><strong>Only visible to you</strong></p> <ul> <li><a href='/posts/text=special:liked'><%= ctx.user.likedPostCount %> liked posts</a></li> |