new_blog/templates/home.html
Pagwin 23b18b4a07
Some checks failed
/ Generate Site (push) Has been cancelled
/ Publish Site (push) Has been cancelled
removed work search message
2026-03-16 15:35:23 -04:00

18 lines
451 B
HTML

<header>
<h1>Hi there, I'm Pagwin</h1>
<p>I post here sometimes</p>
</header>
<article>
<h2>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>
</article>