Files
mailblog/html/index.tmpl
2025-07-31 17:06:30 +02:00

18 lines
404 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}}
<a href=/proxy/8080/post/{{ .Id }}>
<h2>{{.Title}}</h2>
</a>
<p>{{.HTML}}</p>
{{ end }}
</body>
</html>