2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Content pane update for static pages

fixes #1350

- no concept of published page
This commit is contained in:
Hannah Wolfe 2013-11-28 10:48:50 +00:00
parent 6c5b687f13
commit 01736359ad

View file

@ -1,16 +1,16 @@
<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"}}
{{#if published}}
{{#if page}}
<span class="page">Page</span>
{{else}}
<span class="status-draft">Draft</span>
<time datetime="{{date published_at format="YYYY-MM-DD hh:mm"}}" class="date">
Published {{date published_at timeago="True"}}
</time>
{{/if}}
</time>
{{#if page}}
| <span class="page">Static Page</span>
{{else}}
<span class="status-draft">Draft</span>
{{/if}}
{{!<span class="views">1,934</span>}}
</section>
</a>