1{{ template "base.html" . }}
2
3{{ define "title" }}{{ .Page.Title }}{{ end }}
4{{ define "description" }}{{ .Page.Summary }}{{ end }}
5
6{{ define "content" }}
7
8<article>
9 <hgroup>
10 <h1>{{ .Page.Title }}</h1>
11 <p><span class="capitalize">{{ .Page.Type }}</span>, {{ .Page.Created.Format "Jan 2, 2006" }}, on <a href="{{ .Config.BaseURL }}">{{ .Config.Title }}'s blog</a></p>
12 </hgroup>
13 {{ .Page.HTML }}
14</article>
15
16<section>
17 <h2>Other notes</h2>
18 <nav class="multicolumn-list">
19 {{ range .Pages | filterbytype "note" | random 12 }}
20 {{ if not .Draft }}
21 <a href="{{ .RelPermalink }}">{{ .Title }}</a>
22 {{ end }}
23 {{ end }}
24 </nav>
25</section>
26
27{{ if .Page.Meta.mathjax }}
28 <script src="https://cdn.jsdelivr.net/npm/mathjax@3.0.1/es5/tex-mml-chtml.js" async></script>
29{{ end }}
30
31{{ end }}