blog/templates/index.html

49 lines
1.2 KiB
HTML
Raw Normal View History

2016-05-21 09:42:57 +00:00
<!DOCTYPE html>
<html>
2016-10-17 18:53:00 +00:00
{{>head title=site.title summary=site.description}}
2016-05-21 09:42:57 +00:00
<body>
{{> header }}
<div class="container">
<div class="home">
<ul class="post-list">
{{#each pagination.files }}
<li>
<article class="post">
<div class="post-meta feather_type">
<span>
<time datetime="{{moment this.date 'YYY-MM-DD' }}">
{{moment this.date 'dddd, Do MMMM YYYY' }}
</time>
</span>
</div>
<h2>
<a class="post-link" href="/{{ this.path }}">{{ this.title }}</a>
</h2>
<div>{{{ markdown this.summary }}}</div>
</article>
</li>
{{/each}}
</ul>
<div class="pagination">
{{#if pagination.previous}}
<a href="/{{pagination.previous.path}}">&larr; Newer Posts</a>
{{#if pagination.next}}
|
{{/if}}
{{/if}}
{{#if pagination.next}}
<a href="/{{pagination.next.path}}">Older Posts &rarr;</a>
{{/if}}
</div>
</div>
</div>
</body>
</html>