mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
3296a3a41c
no issue - this ports over screens from old admin to allow people to begin working on aspects of the screen - All logged out screens have been imported: Signup, Signin, Forgotten password, reset password - Those screens are now ready for behavior to be ported over - This also updates templates to be more in line with how they were in the old admin - Littered through the code are @TODO comments of functionality that is missing and will need to be resolved before this is production ready - Also scaffolds out the settings screen and every tab
22 lines
496 B
Handlebars
22 lines
496 B
Handlebars
{{#if title}}
|
|
|
|
{{partial "floating-header"}}
|
|
|
|
<section class="content-preview-content">
|
|
<div class="wrapper">
|
|
<h1>{{title}}</h1>
|
|
{{format-markdown markdown}}
|
|
</div>
|
|
</section>
|
|
|
|
{{else}}
|
|
|
|
<div class="no-posts-box">
|
|
<div class="no-posts">
|
|
<h3>You Haven't Written Any Posts Yet!</h3>
|
|
{{#link-to 'new'}}<button class="button-add large" title="New Post">Write a new Post</button>{{/link-to}}
|
|
</div>
|
|
</div>
|
|
|
|
{{/if}}
|