51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{>head title=site.title summary=site.description}}
|
|
|
|
<body>
|
|
{{> header }}
|
|
|
|
<div class="container">
|
|
<div class="home">
|
|
|
|
<ul class="post-list">
|
|
{{#each pagination.files }}
|
|
<li>
|
|
<article class="post">
|
|
<h2 class="post-title">
|
|
<a class="post-link" href="/{{ this.path }}">{{ this.title }}</a>
|
|
</h2>
|
|
|
|
<div class="post-meta feather_type">
|
|
<span>
|
|
<time datetime="{{moment this.date 'YYYY-MM-DD' }}">
|
|
{{moment this.date 'dddd, Do MMMM YYYY' }}
|
|
</time>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="post-preview">{{{ markdown this.summary }}}</div>
|
|
</article>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
|
|
<div class="pagination">
|
|
{{#if pagination.previous}}
|
|
<a href="/{{pagination.previous.path}}">← Newer Posts</a>
|
|
|
|
{{#if pagination.next}}
|
|
|
|
|
{{/if}}
|
|
{{/if}}
|
|
{{#if pagination.next}}
|
|
<a href="/{{pagination.next.path}}">Older Posts →</a>
|
|
{{/if}}
|
|
</div>
|
|
|
|
</div>
|
|
{{> footer }}
|
|
</div>
|
|
</body>
|
|
</html> |