17 lines
479 B
HTML
17 lines
479 B
HTML
{{ define "head" }}
|
||
<link rel="stylesheet" href="/syntax_highlighting.css">
|
||
{{ end }}
|
||
{{ define "main" }}
|
||
{{ partial "header.html" }}
|
||
<article>
|
||
<header>
|
||
<h1><code>{{ .Title }}</code> – {{ .Description }}</h1>
|
||
</header>
|
||
{{ .Content }}
|
||
<footer>
|
||
{{ partial "see_also" . }}
|
||
{{ partial "categories.html" }}
|
||
{{ partial "content_notices.html" . }}
|
||
</footer>
|
||
</article>
|
||
{{ end }}
|