2014-03-02 18:30:35 +04:00
|
|
|
<header class="floatingheader">
|
|
|
|
<button class="button-back" href="#">Back</button>
|
2014-03-10 07:44:08 +04:00
|
|
|
{{!-- @TODO: add back title updates depending on featured state --}}
|
|
|
|
<a {{bind-attr class="featured:featured:unfeatured"}} href="#" title="Feature this post">
|
2014-03-02 18:30:35 +04:00
|
|
|
<span class="hidden">Star</span>
|
|
|
|
</a>
|
|
|
|
<small>
|
2014-03-10 07:44:08 +04:00
|
|
|
{{!-- @TODO: the if published doesn't seem to work, needs to be fixed --}}
|
|
|
|
<span class="status">{{#if published}}Published{{else}}Written{{/if}}</span>
|
2014-03-02 18:30:35 +04:00
|
|
|
<span class="normal">by</span>
|
2014-03-10 07:44:08 +04:00
|
|
|
<span class="author">{{#if author.name}}{{author.name}}{{else}}{{author.email}}{{/if}}</span>
|
2014-03-02 18:30:35 +04:00
|
|
|
</small>
|
|
|
|
<section class="post-controls">
|
2014-03-04 00:18:10 +04:00
|
|
|
{{#link-to "editor" this class="post-edit" title="Edit Post"}}
|
|
|
|
<span class="hidden">Edit Post</span>
|
|
|
|
{{/link-to}}
|
2014-03-02 18:30:35 +04:00
|
|
|
<a class="post-settings" href="#" data-toggle=".post-settings-menu" title="Post Settings"><span class="hidden">Post Settings</span></a>
|
|
|
|
<div class="post-settings-menu menu-drop-right overlay" style="display: none;">
|
|
|
|
<form>
|
|
|
|
<table class="plain">
|
2014-03-04 00:18:10 +04:00
|
|
|
<tbody>
|
|
|
|
<tr class="post-setting">
|
2014-03-02 18:30:35 +04:00
|
|
|
<td class="post-setting-label">
|
|
|
|
<label for="url">URL</label>
|
|
|
|
</td>
|
|
|
|
<td class="post-setting-field">
|
|
|
|
<input id="url" class="post-setting-slug" type="text" value="">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="post-setting">
|
|
|
|
<td class="post-setting-label">
|
|
|
|
<label for="pub-date">Pub Date</label>
|
|
|
|
</td>
|
|
|
|
<td class="post-setting-field">
|
|
|
|
<input id="pub-date" class="post-setting-date" type="text" value="" placeholder="17 Feb 14 @ 02:35"><!--<span class="post-setting-calendar"></span>-->
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr class="post-setting">
|
|
|
|
<td class="post-setting-label">
|
|
|
|
<span class="label">Static Page</span>
|
|
|
|
</td>
|
|
|
|
<td class="post-setting-item">
|
|
|
|
<input id="static-page" class="post-setting-static-page" type="checkbox" value="">
|
|
|
|
<label class="checkbox" for="static-page"></label>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2014-03-04 00:18:10 +04:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-03-02 18:30:35 +04:00
|
|
|
</form>
|
|
|
|
<a class="delete" href="#">Delete This Post</a>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</header>
|