Skip to content

Instantly share code, notes, and snippets.

@MoriTanosuke
Created April 10, 2014 10:06
Show Gist options
  • Save MoriTanosuke/10364253 to your computer and use it in GitHub Desktop.
Save MoriTanosuke/10364253 to your computer and use it in GitHub Desktop.
Featuring posts with Ghost 0.4.x
{{! Display featured posts at the top }}
{{#foreach posts}}
{{#if featured}}
<article class="{{post_class}} .featured">
<header class="post-header">
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{#if tags}}on {{tags}}{{/if}}</span>
<h2 class="post-title"><img src="/assets/images/emoji/star.png" class="featured" title="featured post" alt="featured post" /><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-social">
<a href="{{url}}#disqus_thread">0 Antworten</a>
<g:plusone href="{{url}}" size="small">
</section>
<section class="post-excerpt">
<p>{{excerpt}}&hellip; <a href="{{url}}">weiterlesen</a></p>
</section>
</article>
{{/if}}
{{/foreach}}
{{! Display regular posts }}
{{#foreach posts}}
{{#unless featured}}
<article class="{{post_class}}">
<header class="post-header">
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{#if tags}}on {{tags}}{{/if}}</span>
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
</header>
<section class="post-social">
<a href="{{url}}#disqus_thread">0 Antworten</a>
<g:plusone href="{{url}}" size="small">
</section>
<section class="post-excerpt">
<p>{{excerpt}}&hellip; <a href="{{url}}">weiterlesen</a></p>
</section>
</article>
{{/unless}}
{{/foreach}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment