25 lines
444 B
Plaintext
25 lines
444 B
Plaintext
<!doctype html>
|
|
<html>
|
|
{{template "head" .}}
|
|
<body class="px-6">
|
|
<h1 class="py-4 text-4xl semibold tracking-tight">FAQ</h1>
|
|
<hr class="pb-4">
|
|
<div class="flex flex-col gap-8">
|
|
{{range .}}
|
|
{{template "qa" .}}
|
|
{{end}}
|
|
</div>
|
|
{{template "footer" .}}
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
{{define "qa"}}
|
|
<div>
|
|
<h3 class="block text-lg semibold">{{.Question}}</h3>
|
|
<p class="block text-sm ml-2">{{.Answer}}</p>
|
|
</div>
|
|
{{end}}
|