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

15 lines
240 B
HTML
Raw Normal View History

2022-10-06 20:16:13 +00:00
<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>