mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
798e5b1a4e
- Increased post-settings width to properly display "Static Page" - Changed templates to display "Static Page" if set - Added unit test for body_class helper fixes #969
17 lines
595 B
Handlebars
17 lines
595 B
Handlebars
<a class="permalink{{#if featured}} featured{{/if}}{{#if page}} page{{/if}}" href="#" title="Edit this post">
|
|
<h3 class="entry-title">{{{title}}}</h3>
|
|
<section class="entry-meta">
|
|
<time datetime="2013-01-04" class="date">
|
|
{{#if published}}
|
|
Published {{date published_at timeago="True"}}
|
|
{{else}}
|
|
<span class="status-draft">Draft</span>
|
|
{{/if}}
|
|
</time>
|
|
{{#if page}}
|
|
| <span class="page">Static Page</span>
|
|
{{/if}}
|
|
{{!<span class="views">1,934</span>}}
|
|
</section>
|
|
</a>
|