mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
d968495996
Conflicts: core/client/views/settings.js core/server/models/user.js
35 lines
1.6 KiB
Handlebars
35 lines
1.6 KiB
Handlebars
<header class="floatingheader">
|
|
<a class="{{#if featured}}featured{{else}}unfeatured{{/if}}" href="#">
|
|
<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="#"><span class="hidden">Edit Post</span></a>
|
|
<a class="post-settings" href="#" data-toggle=".menu-drop-right"><span class="hidden">Post Settings</span></a>
|
|
<ul class="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=""><span class="post-setting-calendar"></span>
|
|
</div>
|
|
</li>-->
|
|
<li><a href="#" class="delete">Delete</a></li>
|
|
</ul>
|
|
</section>
|
|
</header>
|
|
<section class="content-preview-content">
|
|
<div class="wrapper"><h1>{{{title}}}</h1>{{{html}}}</div>
|
|
</section> |