aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/views/admin-page.ecr63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/views/admin-page.ecr b/src/views/admin-page.ecr
index 7614453..f1b8b01 100644
--- a/src/views/admin-page.ecr
+++ b/src/views/admin-page.ecr
@@ -500,6 +500,69 @@
Body of this blog entry.
</p>
</div><!-- form-group -->
+
+ <div class='row'>
+ <div class='col-md-6'>
+ <div class='form-group'>
+ <label for='blog-edit-tags'>
+ Tags
+ </label>
+
+ <input
+ type='text'
+ id='blog-edit-tags'
+ class='form-control'
+ title='Enter tags for this blog entry.'
+ placeholder='Blog Entry Tags'
+ aria-describedby='blog-edit-tags-help'
+ />
+
+ <p id='blog-edit-tags-help' class='help-block'>
+ Space-delimited list of tags.
+ </p>
+ </div><!-- form-group -->
+ </div><!-- col-md-6 -->
+
+ <div class='col-md-6'>
+ <label>
+ State
+ </label>
+
+ <div class='btn-group btn-group-justified'>
+ <a
+ href='#'
+ class='btn btn-primary post-state'
+ title='Mark this page as a draft.'
+ >
+ <i class='fa fa-wrench'></i>
+ Draft
+ </a>
+
+ <a
+ href='#'
+ class='btn btn-default post-state'
+ title='Mark this page as published.'
+ >
+ <i class='fa fa-bullhorn'></i>
+ Published
+ </a>
+
+ <a
+ href='#'
+ class='btn btn-default post-state'
+ title='Mark this page as deleted.'
+ >
+ <i class='fa fa-trash'></i>
+ Deleted
+ </a>
+ </div><!-- btn-group -->
+
+ <p class='help-block'>
+ Visibility state of this page.
+ </p>
+ </div><!-- col-md-6 -->
+ </div><!-- row -->
+
</div><!-- modal-body -->
<div class='modal-footer'>