site.lyte.dev/layouts/index.html

41 lines
729 B
HTML
Raw Normal View History

2020-07-14 16:47:54 -05:00
{{ define "main" }}
2020-12-16 00:13:13 -06:00
2022-01-28 12:12:45 -06:00
{{ .Content }}
2020-12-16 00:13:13 -06:00
<h2>Latest Posts (<a target="_blank" href="/blog/index.xml">RSS</a>)</h2>
2020-12-16 00:13:13 -06:00
<ul>
{{ range (where .Site.RegularPages "Section" "blog") }}
{{ .Render "li" }}
{{ else }}
<p>Looks like there's nothing here!... yet!</p>
{{ end }}
</ul>
2022-03-09 10:55:32 -06:00
<h2>External Links</h2>
2020-12-16 00:13:13 -06:00
2022-03-09 10:55:32 -06:00
<ul class="horizontal-blocks">
2020-12-16 00:13:13 -06:00
<li>
<a href="https://discord.gg/jUCXCYp">Discord</a>
</li>
<li>
<a href="mailto:daniel@lyte.dev">Email</a>
</li>
<li>
<a href="https://git.lyte.dev/lytedev">git.lyte.dev</a>
</li>
</ul>
<h2>Meta</h2>
2022-03-09 10:55:32 -06:00
<ul class="horizontal-blocks">
2020-12-16 00:13:13 -06:00
<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 }}