site.lyte.dev/layouts/index.html

55 lines
1.0 KiB
HTML

{{ define "main" }}
<h2>Hi! I'm Daniel.</h2>
<p>
<img class="rounded" style="width: 256px" src="/img/avatar.jpg" />
</p>
<p>
I live in Kansas City where I help run <a target="_blank"
href="https://kcrising.church">a small Christian church</a>, raise two
kids with my <a target="_blank"
href="https://www.instagram.com/valerielauren93">awesome wife</a>, and
write software for <a target="_blank"
href="https://postmates.com">Postmates</a>.
</p>
<p>
Occasionally, I post technical blog posts here.
</p>
<h2>Latest Posts</h2>
<ul>
{{ range (where .Site.RegularPages "Section" "blog") }}
{{ .Render "li" }}
{{ else }}
<p>Looks like there's nothing here!... yet!</p>
{{ end }}
</ul>
<h2>More Me</h2>
<ul>
<li>
<a href="https://discord.gg/jUCXCYp">Discord</a>
</li>
<li>
<a href="mailto:daniel@lyte.dev">Email</a>
</li>
<li>
<a href="https://github.com/lytedev">GitHub</a>
</li>
</ul>
<h2>Meta</h2>
<ul>
<li>
<a href="/privacy">Privacy Policy</a>
</li>
</ul>
{{ end }}