This repository has been archived on 2023-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www-2/templates/posts/index.html

24 lines
504 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
{{ partial "header.html" . | safeHTML }}
</head>
<body>
{{ partial "navigation.html" . | safeHTML }}
<main>
<article>
<h1>{{ .Title }}</h1>
{{ .Content | safeHTML }}
<div aria-label="Table of contents">
<ul>
{{- range .Pages }}
<li><a href="{{ .Path }}">{{ .Title }}</a></li>
{{- end }}
</ul>
</div>
</article>
</main>
{{ partial "footer.html" . | safeHTML }}
</body>
</html>