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/page.html

26 lines
551 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 class="page">
{{- with .Prev }}
<a class="prev" href="{{ .Path }}">← {{ .Title }}</a>
{{- end }}
{{- with .Next }}
<a class="next" href="{{ .Path }}">{{ .Title }} →</a>
{{- end }}
</div>
</article>
</main>
{{ partial "footer.html" . | safeHTML }}
</body>
</html>