mirror of
https://github.com/sbrow/thor.git
synced 2026-08-26 19:33:32 -04:00
20 lines
385 B
HTML
20 lines
385 B
HTML
{{<base}}
|
|
{{$main}}
|
|
<main>
|
|
<h1>{{page.title}}</h1>
|
|
{{&content}}
|
|
{{#posts | group_by year}}
|
|
<section>
|
|
<h2>{{key}}</h2>
|
|
<ul>
|
|
{{#items}} <li><a href="{{permalink}}">{{&title}}</a><span>{{#date}}<time
|
|
datetime="{{date}}">{{date | format}}</time>{{/date}}</span>
|
|
</li>
|
|
{{/items}}
|
|
</ul>
|
|
</section>
|
|
{{/posts}}
|
|
</main>
|
|
{{/main}}
|
|
{{/base}}
|