sandvich.xyz/layouts/index.html

87 lines
3.8 KiB
HTML
Raw Normal View History

2022-09-12 19:20:07 -07:00
{{ define "main" }}
<div>
<article class="main">
<div class="root">
<div class="content">
2022-10-30 19:47:39 -07:00
<h1 class="MUGA">
<span class="hidden">forsenLevel.xyz</span>
<span class="muga">sandvich.xyz</span>
</h1>
<ul class="links">
<li>
<a href="https://github.com/humanoidsandvichdispenser">
<i class="bi bi-github"></i>
HumanoidSandvichDispenser
</a>
</li>
<li>
<a href="mailto:humanoidsandvichdispenser@gmail.com">
<i class="bi bi-envelope-fill"></i>
humanoidsandvichdispenser@gmail.com
</a>
</li>
<li>
<a href="/sandvich.gpg">
<i class="bi bi-key-fill"></i>
Encrypt mail with GPG key
</a>
</li>
<li>
<a href="/posts/index.xml">
<i class="bi bi-rss-fill"></i>
RSS Feed (posts only)
</a>
</li>
2024-03-09 17:31:25 -08:00
<li>
<a href="https://youtube.com/@humanoidsandvichdispenser">
<i class="bi bi-youtube"></i>
@humanoidsandvichdispenser
</a>
</li>
2022-10-30 19:47:39 -07:00
<li>
<a href="/contact">
<i class="bi bi-three-dots"></i>
Contact methods
</a>
</li>
</ul>
<h2 class="offset-fix">
2024-03-09 17:31:25 -08:00
<i class="bi bi-music-note-beamed" style="margin-right: 0.5em;"></i>
Sheet Music
<a href="/music" class="button">
<button style="vertical-align: middle; margin-left: 8px;">
view all
</button>
</a>
2022-10-30 19:47:39 -07:00
</h2>
<div class="post-list">
2024-03-09 17:31:25 -08:00
{{ range (where .Site.RegularPages "Section" "music") }}
{{ partial "music.html" . }}
2022-10-30 19:47:39 -07:00
{{ end }}
</div>
<h2 class="offset-fix">
<i class="bi bi-pencil-square" style="margin-right: 0.5em;"></i>
Recent Posts
<a href="/posts" class="button">
<button style="vertical-align: middle; margin-left: 8px;">
view all
</button>
</a>
</h2>
{{ partial "post-list.html" (where .Site.RegularPages "Section" "posts" | first 5) }}
2024-03-09 17:31:25 -08:00
<h2 class="offset-fix">
<i class="bi bi-tools" style="margin-right: 0.5em;"></i>
Stuff
</h2>
<div class="post-list">
{{ range (where .Site.RegularPages "Section" "tools") }}
{{ partial "tool.html" . }}
{{ end }}
</div>
2022-09-12 19:20:07 -07:00
</div>
</div>
</article>
{{ template "_internal/google_analytics.html" . }}
</div>
{{ end }}