mirror of
https://github.com/sbrow/thor.git
synced 2026-08-26 11:23:32 -04:00
20 lines
388 B
HTML
20 lines
388 B
HTML
{{<base}}
|
|
{{$content}}
|
|
<main>
|
|
<h1>{{page_title}}</h1>
|
|
{{&body}}
|
|
{{#by_year}}
|
|
<section>
|
|
<h2>{{year}}</h2>
|
|
<ul>
|
|
{{#posts}} <li><a href="{{permalink}}">{{&title}}</a><span>{{#date_iso}}<time
|
|
datetime="{{date_iso}}">{{date_display}}</time>{{/date_iso}}</span>
|
|
</li>
|
|
{{/posts}}
|
|
</ul>
|
|
</section>
|
|
{{/by_year}}
|
|
</main>
|
|
{{/content}}
|
|
{{/base}}
|