2014-03-19 00:10:43 +00:00
|
|
|
{{!< default}}
|
|
|
|
|
|
|
|
{{! The comment above "< default" means - insert everything in this file into
|
|
|
|
the {body} of the default.hbs template, which contains our header/footer. }}
|
|
|
|
|
|
|
|
{{! The big featured header on the homepage, with the site logo and description }}
|
|
|
|
<header class="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
|
2014-07-20 14:43:44 +00:00
|
|
|
<nav class="main-nav overlay clearfix">
|
|
|
|
<a class="back-button icon-arrow-left" href="{{@blog.url}}">Home</a>
|
|
|
|
<a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a>
|
|
|
|
</nav>
|
2014-03-19 00:10:43 +00:00
|
|
|
<div class="vertical">
|
|
|
|
<div class="site-head-content inner">
|
2014-07-20 14:43:44 +00:00
|
|
|
<h1 class="blog-title">{{tag.name}}</h1>
|
|
|
|
<h2 class="blog-description">A {{pagination.total}}-post collection</h2>
|
2014-03-19 00:10:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{! The main content area on the homepage }}
|
|
|
|
<main class="content" role="main">
|
|
|
|
|
|
|
|
{{! Each post will be output using this markup }}
|
|
|
|
{{#foreach posts}}
|
|
|
|
|
|
|
|
<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> {{tags prefix="on "}}</span>
|
|
|
|
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
|
|
|
|
|
|
|
|
</header>
|
|
|
|
<section class="post-excerpt">
|
|
|
|
<p>{{excerpt}}…</p>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{{/foreach}}
|
|
|
|
|
2014-07-20 14:43:44 +00:00
|
|
|
{{! After all the posts, we have the previous/next pagination links }}
|
2014-03-19 00:10:43 +00:00
|
|
|
{{pagination}}
|
|
|
|
|
|
|
|
</main>
|