mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
50510e63fd
closes #1308
53 lines
2.4 KiB
Handlebars
53 lines
2.4 KiB
Handlebars
<header class="floatingheader">
|
|
<button class="button-back" href="#">Back</button>
|
|
<a class="{{#if featured}}featured{{else}}unfeatured{{/if}}" href="#" title="{{#if featured}}Unfeature{{else}}Feature{{/if}} this post">
|
|
<span class="hidden">Star</span>
|
|
</a>
|
|
{{! TODO: JavaScript toggle featured/unfeatured}}
|
|
<span class="status">{{#if published}}Published{{else}}Written{{/if}}</span>
|
|
<span class="normal">by</span>
|
|
<span class="author">{{#if author.name}}{{author.name}}{{else}}{{author.email}}{{/if}}</span>
|
|
<section class="post-controls">
|
|
<a class="post-edit" href="#" title="Edit Post"><span class="hidden">Edit Post</span></a>
|
|
<a class="post-settings" href="#" data-toggle=".post-settings-menu" title="Post Settings"><span class="hidden">Post Settings</span></a>
|
|
<ul class="post-settings-menu menu-drop-right overlay">
|
|
<li class="post-setting">
|
|
<div class="post-setting-label">
|
|
<label for="url">URL</label>
|
|
</div>
|
|
<div class="post-setting-field">
|
|
<input class="post-setting-slug" type="text" value="{{{slug}}}">
|
|
</div>
|
|
</li>
|
|
<li class="post-setting">
|
|
<div class="post-setting-label">
|
|
<label for="url">Pub Date</label>
|
|
</div>
|
|
<div class="post-setting-field">
|
|
<input class="post-setting-date" type="text" value="">
|
|
</div>
|
|
</li>
|
|
<li class="post-setting">
|
|
<div class="post-setting-label">
|
|
<label for="static-page">Static Page</label>
|
|
</div>
|
|
<div class="post-setting-field">
|
|
<input id="static-page" class="post-setting-static-page" type="checkbox" value="">
|
|
</div>
|
|
</li>
|
|
<li><a href="#" class="delete hidden">Delete This Post</a></li>
|
|
</ul>
|
|
</section>
|
|
</header>
|
|
<section class="content-preview-content">
|
|
<div class="wrapper"><h1>{{{title}}}</h1>{{{html}}}</div>
|
|
</section>
|
|
{{#unless title}}
|
|
<div class="no-posts-box">
|
|
<div class="no-posts">
|
|
<h3>You Haven't Written Any Posts Yet!</h3>
|
|
<form action="/ghost/editor/"><button class="button-add large" title="New Post">Write a new Post</button></form>
|
|
</div>
|
|
</div>
|
|
{{/unless}}
|