diff options
Diffstat (limited to 'client/html')
| -rw-r--r-- | client/html/index.htm | 2 | ||||
| -rw-r--r-- | client/html/post_main.tpl | 28 | ||||
| -rw-r--r-- | client/html/posts_header.tpl | 1 |
3 files changed, 15 insertions, 16 deletions
diff --git a/client/html/index.htm b/client/html/index.htm index 0072890..2f0f4e4 100644 --- a/client/html/index.htm +++ b/client/html/index.htm @@ -2,7 +2,7 @@ <html> <head> <meta charset='utf-8'/> - <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1'/> + <meta name='viewport' content='width=device-width, initial-scale=1.0'> <meta name='theme-color' content='#24aadd'/> <meta name='apple-mobile-web-app-capable' content='yes'/> <meta name='apple-mobile-web-app-status-bar-style' content='black'/> diff --git a/client/html/post_main.tpl b/client/html/post_main.tpl index 54c5733..84e48b1 100644 --- a/client/html/post_main.tpl +++ b/client/html/post_main.tpl @@ -29,6 +29,7 @@ <span class='vim-nav-hint'>Next post ></span> </a> </article> + <% if (ctx.canEditPosts || ctx.canDeletePosts || ctx.canFeaturePosts) { %> <article class='edit-post'> <% if (ctx.editMode) { %> <a href='<%= ctx.getPostUrl(ctx.post.id, ctx.parameters) %>'> @@ -36,16 +37,13 @@ <span class='vim-nav-hint'>Back to view mode</span> </a> <% } else { %> - <% if (ctx.canEditPosts || ctx.canDeletePosts || ctx.canFeaturePosts) { %> - <a href='<%= ctx.getPostEditUrl(ctx.post.id, ctx.parameters) %>'> - <% } else { %> - <a class='inactive'> - <% } %> - <i class='fa fa-pencil'></i> - <span class='vim-nav-hint'>Edit post</span> + <a href='<%= ctx.getPostEditUrl(ctx.post.id, ctx.parameters) %>'> + <i class='fa fa-pencil'></i> + <span class='vim-nav-hint'>Edit post</span> </a> <% } %> </article> + <% } %> </nav> <div class='sidebar-container'></div> @@ -54,13 +52,15 @@ <div class='content'> <div class='post-container'></div> - <% if (ctx.canListComments) { %> - <div class='comments-container'></div> - <% } %> + <div class='after-mobile-controls'> + <% if (ctx.canCreateComments) { %> + <h2>Add comment</h2> + <div class='comment-form-container'></div> + <% } %> - <% if (ctx.canCreateComments) { %> - <h2>Add comment</h2> - <div class='comment-form-container'></div> - <% } %> + <% if (ctx.canListComments) { %> + <div class='comments-container'></div> + <% } %> + </div> </div> </div> diff --git a/client/html/posts_header.tpl b/client/html/posts_header.tpl index d1422d2..77d16ed 100644 --- a/client/html/posts_header.tpl +++ b/client/html/posts_header.tpl @@ -16,7 +16,6 @@ %><form class='horizontal bulk-edit bulk-edit-tags'><% %><span class='append hint'>Tagging with:</span><% %><a href class='mousetrap button append open'>Mass tag</a><% - %><wbr/><% %><%= ctx.makeTextInput({name: 'tag', value: ctx.parameters.tag}) %><% %><input class='mousetrap start' type='submit' value='Start tagging'/><% %><a href class='mousetrap button append close'>Stop tagging</a><% |