LucentLink/layouts/partials/about.html

13 lines
407 B
HTML
Raw Normal View History

2025-09-03 22:11:20 -04:00
{{ with .Params.about }}
<div class="bg-white bg-opacity-10 rounded-lg p-6 mb-6 border border-white border-opacity-20">
<h2 class="text-xl font-bold mb-4">{{ .title }}</h2>
<div class="space-y-4">
{{ range .sections }}
<div>
<h3 class="font-semibold mb-2">{{ .heading }}</h3>
<p class="text-sm opacity-80">{{ .content }}</p>
</div>
{{ end }}
</div>
</div>
{{ end }}