gemini-capsule/capsule/templates/_default/page.html

23 lines
481 B
HTML
Raw Normal View History

2022-10-06 20:16:13 +00:00
<html>
<head>
<meta charset="utf-8">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="/simple.css">
</head>
<body>
<h1>{{ .Title }}</h1>
2022-10-11 20:19:25 +00:00
{{ if .Content }}
{{ .Content | safeHTML }}{{ end }}
<p>
<a href="/contact">Une question, une remarque, contactez-moi :)</a>
</p>
<p>
<a href="/">Retour à la page principale</a>
</p>
<p>Le contenu de cette page est disponible sous licence CC-BY-SA</p>
2022-10-06 20:16:13 +00:00
</body>
</html>