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

26 lines
655 B
HTML
Raw Normal View History

2022-10-06 20:16:13 +00:00
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/simple.css">
<title>{{ .Title }}</title>
</head>
<body>
<h1>{{ .Title }}</h1>
2022-10-11 20:19:25 +00:00
{{ if .Content }}
{{ .Content | safeHTML }}{{ end }}
<ul>
{{ range .Pages }}<li><a href="{{ .Path }}">{{ if not .Date.IsZero -}}
{{ .Date.Format "2006-01-02" }} {{end}}{{ .Title }}</a></li>
{{ end -}}
</ul>
<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>