1
0
Fork 0
mirnet.org/themes/mir/layouts/partials/questions.html
brooke badc1b7c62
Some checks failed
Hugo / build (push) Failing after -9s
initial
2024-09-12 13:41:14 -04:00

11 lines
419 B
HTML

{{ if .Params.faq }} {{ range .Params.faq }}
<div class="max-w-[800px]">
<h2 class="text-xl font-bold mb-2 text-gray-800">{{ .group }}</h2>
{{ range .questions }}
<details class="border rounded p-2 mb-2 bg-white shadow-sm text-gray-800">
<summary class="cursor-pointer text-sm">{{ .question }}</summary>
<p class="pt-4 text-sm italic">{{ .answer }}</p>
</details>
{{ end }}
</div>
{{ end }} {{ end }}