Vivid-Casper/index.hbs

27 lines
904 B
Handlebars
Raw Normal View History

{{!< default}}
2013-08-20 16:53:02 +00:00
<header id="site-head">
2013-08-20 16:53:02 +00:00
<div class="wrap">
<h1 class="blog-title">{{settings.title}}</h1>
<h2 class="blog-description">A designer, developer and entrepreneur. Spends his time travelling the world with a bag of kites. Likes journalism and publishing platforms.</h2>
2013-08-20 16:53:02 +00:00
</div>
</header>
2013-08-10 13:06:01 +00:00
<main class="content" role="main">
2013-08-20 16:53:02 +00:00
{{#foreach posts}}
2013-08-10 13:06:01 +00:00
<article class="{{post_class}}">
2013-08-20 16:53:02 +00:00
<header class="post-header">
<h2 class="post-title"><a href="/{{slug}}">{{title}}</a></h2>
<span class="post-meta"><time datetime="{{date published_at format='YYYY-MM-DD'}}">{{date published_at format='DD MMM YYYY'}}</time> in <a href="#">What I Learned Building...</a></span>
2013-08-20 16:53:02 +00:00
</header>
<section class="post-excerpt">
<p>{{excerpt}}&hellip;</p>
2013-08-20 16:53:02 +00:00
</section>
</article>
2013-08-10 13:06:01 +00:00
2013-08-20 16:53:02 +00:00
{{/foreach}}
2013-08-10 13:06:01 +00:00
{{pagination}}
2013-08-10 13:06:01 +00:00
</main>