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

17 lines
312 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 }}
</article>
</main>
{{ partial "footer.html" . | safeHTML }}
</body>
</html>