new_blog/templates/home.html
Pagwin a7b732854e
Some checks are pending
/ Generate Site (push) Waiting to run
/ Publish Site (push) Blocked by required conditions
changed home work message
2025-12-13 18:40:57 -05:00

21 lines
732 B
HTML

<header>
<h1>Hi there, I'm Pagwin</h1>
<p>I post here sometimes</p>
<p>Also I am currently looking for work, particularly in embedded and web developer work, send me an email <a
href="mailto:pagwin_+public-blog-email@pagwin.xyz">
pagwin_+public-blog-email@pagwin.xyz</a> if you like what you read and want to hire me</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>