Website/old/layouts/article.hbs

31 lines
580 B
Handlebars
Raw Normal View History

2015-12-04 18:30:01 -05:00
<div class="article">
<div class="navigation">
{{#if previous}}
<a href="{{previous.paths.base}}">
<span style="float: left">
<span class="arrow">⟵</span>
{{previous.title}}
<span class="arrow">—</span>
</span>
</a>
{{/if}}
{{#if next}}
<a href="{{next.paths.base}}">
<span style="float: right">
<span class="arrow">—</span>
{{next.title}}
<span class="arrow">⟶</span>
</span>
</a>
{{/if}}
</div>
<h1 class="title">{{title}}</h1>
<h2 class="byline">
2015-12-15 09:57:21 -05:00
{{formatDate date}}
2015-12-04 18:30:01 -05:00
{{#if author}}
2015-12-15 09:57:21 -05:00
by {{{author}}}
2015-12-04 18:30:01 -05:00
{{/if}}
</h2>
{{{contents}}}
</div>