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

41 lines
1.2 KiB
HTML

<html>
<head>
<meta charset="utf-8">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="/simple.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">🏠 Acceuil</a></li>
<li><a href="/gemlog">📒 Mes billets</a></li>
<li><a href="https://wiki.valvin.fr">Mon wiki</a></li>
<li><a href="https://git.valvin.fr">Mes dépôts</a></li>
<li><a href="/contact">💬 Contact</a></li>
<li><a href="/atom.xml">📣 Flux Atom/RSS</a></li>
</ul>
</nav>
</header>
<h1>{{ .Title }}</h1>
{{ 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>Les derniers billets:</p>
<ul>
{{ with site.Root.GetPage "/gemlog" }}
{{ range $i, $page := .Pages }}{{if lt $i 5}}<li><a href="{{ $page.Path }}">{{ if not $page.Date.IsZero -}}
{{ $page.Date.Format "2006-01-02" }} {{end}}{{ $page.Title }}</a></li>{{end}}
{{ end -}}
{{ end }}
</ul>
<p><i>Le contenu de cette page est disponible sous licence CC-BY-SA</i></p>
</body>
</html>