mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
ef6b03fef1
- All HTML / Handlebars should use double quotes - Removed a tag I meant to remove earlier
22 lines
499 B
Handlebars
22 lines
499 B
Handlebars
{{#if title}}
|
|
|
|
{{partial "floating-header"}}
|
|
|
|
<section class="content-preview-content">
|
|
<div class="wrapper">
|
|
<h1>{{title}}</h1>
|
|
{{gh-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}}
|