15 lines
367 B
HTML
15 lines
367 B
HTML
<h2>Hi there, I'm Pagwin</h2>
|
|
<p>I post here sometimes</p>
|
|
<hr>
|
|
<h2>Recent posts:</h2>
|
|
<dl>
|
|
{{#posts}}
|
|
<div>
|
|
<dt class="post-title-item"><a href="{{link}}">{{title}}</a> </dt>
|
|
<dd class="dt-subtitle"><time datetime="{{{iso_date}}}">{{date}}</time></dd>
|
|
<dd>
|
|
<p>{{summary}}</p>
|
|
</dd>
|
|
</div>
|
|
{{/posts}}
|
|
</dl>
|