19 lines
403 B
HTML
19 lines
403 B
HTML
{{ define "main" }}
|
|
<main>
|
|
<article>
|
|
|
|
<header>
|
|
<h1 class="post-title">
|
|
{{ .Title }}
|
|
</h1>
|
|
</header>
|
|
{{ partial "cover.html" . }}
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
{{ .Content | replaceRE "(<h[1-9] id=\"([^\"]+)\".+)(</h[1-9]+>)" `${1}<a href="#${2}" class="hanchor" ariaLabel="Anchor">⌗</a> ${3}` | safeHTML }}
|
|
|
|
</article>
|
|
|
|
</main>
|
|
{{ end }}
|