grannysmith-technical/layouts/_default/single.html

17 lines
443 B
HTML

{{ define "head" }}
<link rel="stylesheet" href="/syntax_highlighting.css">
{{ end }}
{{ define "main" }}
{{ partial "header.html" }}
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<footer>
{{ partial "see_also" . }}
{{ partial "categories.html" }}
{{ partial "content_notices.html" . }}
</footer>
</article>
{{ end }}