site.lyte.dev/layouts/index.html

55 lines
1 KiB
HTML
Raw Normal View History

2020-07-14 16:47:54 -05:00
{{ define "main" }}
<h2>Hi! I'm Daniel.</h2>
2020-07-14 16:47:54 -05:00
<p>
<img class="rounded" style="width: 256px" src="/img/avatar.jpg" />
2020-07-14 16:47:54 -05:00
</p>
<p>
2020-09-14 11:00:31 -05:00
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>.
2020-07-14 16:47:54 -05:00
</p>
<p>
2020-09-14 11:00:31 -05:00
Occasionally, I post technical blog posts here.
2020-07-14 16:47:54 -05:00
</p>
2020-07-14 18:02:25 -05:00
<h2>Latest Posts</h2>
2020-07-14 16:47:54 -05:00
<ul>
{{ range (where .Site.RegularPages "Section" "blog") }}
{{ .Render "li" }}
{{ else }}
<p>Looks like there's nothing here!... yet!</p>
{{ end }}
</ul>
2020-09-14 11:00:31 -05:00
<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>
2020-07-14 16:47:54 -05:00
{{ end }}