sadium/layouts/_default/single.html
Артём 0a5442d1b7
All checks were successful
/ site (push) Successful in 1s
Opengraph test
2024-08-08 12:35:07 +03:00

21 lines
430 B
HTML

{{ define "main" }}
<main>
{{ partial "opengraph.html" . }}
<article>
<header>
<h1 class="post-title">
{{ .Title }}
</h1>
</header>
<aside>
{{ .TableOfContents }}
</aside>
{{ .Content | replaceRE "(<h[1-9] id=\"([^\"]+)\".+)(</h[1-9]+>)" `${1}<a href="#${2}" class="hanchor" ariaLabel="Anchor">&#8983;</a> ${3}` | safeHTML }}
</article>
</main>
{{ end }}