61 lines
1.2 KiB
HTML
61 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
|
|
<h2 class="with-align">Hi! I'm Daniel.</h2>
|
|
|
|
<p>
|
|
<img class="rounded" src="/img/avatar-256.jpg" height=256 width=256 />
|
|
</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>
|
|
(now <a target="_blank" href="https://uber.com">Uber</a>).
|
|
</p>
|
|
|
|
<p>
|
|
Occasionally, I post technical articles 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>
|
|
<li>
|
|
<a href="https://git.lyte.dev/lytedev">git.lyte.dev</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>Meta</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="/privacy">Privacy Policy</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://git.lyte.dev/lytedev/site.lyte.dev">Site Code</a>
|
|
</li>
|
|
</ul>
|
|
|
|
{{ end }}
|