blob: c8373bb0f5b08d49f0f15a577111c433d72c31dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{{ define "main" }}
<main role="main" class="container-blog mx-auto px-6 md:p-0">
<a class="block rounded bg-yellow-50 hover:bg-yellow-100 border border-yellow-300 mb-10 px-4 py-3" href="https://bakingonagrill.com" target="_blank">
<p class="font-semibold">Baking on a Grill</p>
<p>Microblog and experiments about/with Plan9 operating system and other silly ideas.</p>
</a>
<h1 class="text-2xl font-bold mb-6">Blog posts</h1>
<!-- List of all blog posts -->
<nav itemscope itemtype="https://schema.org/SiteNavigationElement" class="mb-12" role="feed">
<meta itemprop="name" content="Article list">
{{ range (where .Site.RegularPages "Section" "posts") }}
<article class="mb-5" itemscope itemtype="http://schema.org/Article">
<time class="block text-gray-400 font-medium text-xs">{{ .Date.Format "Monday Jan 2, 2006" }}</time>
<a href="/{{ .Params.url }}" itemprop="url" class="hover:bg-yellow-100" rel="bookmark noopener"
aria-label="Opens URL">
{{ if .Params.draft }}
<span class="bg-orange-600 text-white px-1.5">Draft</span>
{{ end }}
{{.Title}}
</a>
</article>
{{ end }}
</nav>
<hr class="border-2 border-gray-100 mb-10">
<!-- Projects I work on -->
{{ partial "side-projects.html" . }}
<hr class="border-2 border-gray-100 mb-10">
<!-- Openring -->
{{ partial "openring.html" . }}
</main>
{{ end }}
|