26 lines
530 B
HTML
26 lines
530 B
HTML
{{/* file: templates/index.html */}}
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<body>
|
|
<h1>{{.Title}}</h1>
|
|
<section id="lord_prayer">
|
|
{{if index .Selected "lords_prayer"}}
|
|
{{template "lords_prayer"}}
|
|
{{end}}
|
|
</section>
|
|
|
|
<section id="collect_for_purity">
|
|
{{if index .Selected "collect_for_purity"}}
|
|
{{template "collect_for_purity"}}
|
|
{{end}}
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|
|
|