1
0
Fork 0
mirnet.org/themes/mir/layouts/partials/list.html

19 lines
695 B
HTML
Raw Normal View History

2024-09-12 13:41:14 -04:00
{{ with .Site.GetPage "_index.md" }}
2024-09-13 00:59:43 -04:00
<div class="gap-8 flex flex-col mx-auto p-6 my-16">
2024-09-12 13:41:14 -04:00
<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>
2024-09-12 13:41:14 -04:00
</div>
{{ end }}
</div>
</div>
{{ end }}