sadium/layouts/_default/single.html
Артём 498073d201
All checks were successful
/ site (push) Successful in 1s
Opengraph опять
2024-08-10 11:08:26 +03:00

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">&#8983;</a> ${3}` | safeHTML }}
</article>
</main>
{{ end }}