Skip to content

Instantly share code, notes, and snippets.

@bgvo
Created September 12, 2014 07:04
Show Gist options
  • Save bgvo/5f49684b5f963b8ce1d6 to your computer and use it in GitHub Desktop.
Save bgvo/5f49684b5f963b8ce1d6 to your computer and use it in GitHub Desktop.
index.hbs (blog theme for Ghost.io)
{{!< default}}
{{> header}}
<main class="main_pixel headline" role="main">
{{#foreach posts}}
<article class="article_pixel" role="article" itemscope itemtype="http://schema.org/Article">
<div class="image_container"><a href="{{{url}}}"></a></div>
<div class="post_container">
<header class="postheader_pixel">
<time class="date_pixel" datetime="{{date format="YYYY-MM-DD"}}" itemprop="datePublished">
<span class="icon-clock"></span>{{date published_at timeago="true"}} {{#if tags}} <span>in</span> {{tags separator=" / "}} {{/if}}
</time>
<h1 class="posttitle_pixel" itemprop="headline">
<a href="{{{url}}}" rel="bookmark">
{{title}}
</a>
</h1>
</header>
<div class="postcontent_pixel" itemprop="articleBody">
{{content characters="0"}}
{{excerpt characters="150"}}...
</div>
</div>
</article>
{{/foreach}}
{{#if pagination}}
<div class="pagination_pixel">
{{{pagination}}}
</div>
{{/if}}
</main>
{{> footer}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment