1
0
Fork 0
mirnet.org/themes/mir/layouts/partials/list.html
brooke 3bddc9c092 general improvements. single default, addded dark theme.
fixed issue with contact form color overlay.
2024-09-13 13:50:19 -04:00

19 lines
No EOL
695 B
HTML

{{ with .Site.GetPage "_index.md" }}
<div class="gap-8 flex flex-col mx-auto p-6 my-16">
<strong class="text-3xl text-left font-bold">What we do</strong>
<div class="flex flex-wrap justify-center gap-8">
{{ range .Params.list.main }}
<div class="flex flex-col w-full sm:w-1/3 lg:w-1/4">
<div class="max-w-12">
<div class="flex justify-center mb-4 p-3 fill-[#192252] rounded-xl bg-[#f1f5fc]">
{{ .icon | safeHTML }}
</div>
</div>
<p class="text-xl font-semibold mb-2">{{ .title }}</p>
<p>{{ .description }}</p>
</div>
{{ end }}
</div>
</div>
{{ end }}