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

15 lines
240 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="/simple.css">
</head>
<body>
<h1>{{ .Title }}</h1>
{{ if .Content }}
{{ .Content | safeHTML }}{{ end }}
</body>
</html>