Files
mailblog/html/index.tmpl
Laurent Ulrich 614a6059f5 rien ou presque
2025-08-04 22:01:50 +02:00

26 lines
600 B
Cheetah

<!doctype html>
<html lang="{{.Lang}}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{{.Title}}</title>
</head>
<body>
<h1>{{.Title}}</h1>
{{range .Posts}}
<article>
<a href=/proxy/8080/post/{{ .Id }}>
<h2>{{.Title}}</h2>
</a>
<div>
{{.HTML}}
</div>
<footer>
<p>
{{.Date}}
</p>
</footer>
</article>
{{ end }}
</body>
</html>