31 lines
957 B
Handlebars
31 lines
957 B
Handlebars
{{!< default}}
|
|
|
|
<header id="sitehead">
|
|
<figure class="blog-icon">
|
|
<img src="http://f.cl.ly/items/1O1o3n05373h222G101k/gravatar-j7-100.jpg" alt="John" />
|
|
</figure>
|
|
<div class="wrap">
|
|
<h1>John O'Nolan</h1>
|
|
<h2>A designer, developer and entrepreneur. Spends his time travelling the world with a bag of kites. Likes to write.</h2>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main class="content" role="main">
|
|
|
|
{{#foreach posts}}
|
|
|
|
<article class="post">
|
|
<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>
|
|
</header>
|
|
<section class="post-excerpt">
|
|
<p>{{excerpt}}…</p>
|
|
</section>
|
|
</article>
|
|
|
|
{{/foreach}}
|
|
|
|
{{pagination}}
|
|
</main> |