site.lyte.dev/layouts/index.html

61 lines
1.1 KiB
HTML
Raw Normal View History

2020-07-14 16:47:54 -05:00
{{ define "main" }}
2020-12-16 00:13:13 -06:00
<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
2021-03-26 09:34:41 -05:00
<a target="_blank" href="https://postmates.com">Divvy</a>.
2020-12-16 00:13:13 -06:00
</p>
<p>
2021-01-22 10:07:01 -06:00
Occasionally, I post technical articles here.
2020-12-16 00:13:13 -06:00
</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>
2020-07-14 16:47:54 -05:00
{{ end }}