LucentLink/layouts/partials/link-card.html

18 lines
450 B
HTML
Raw Normal View History

2025-09-03 22:11:20 -04:00
<div class="space-y-4 mb-8">
{{ range .Params.links }}
<a href="{{ .href }}" class="block link-card p-4 flex items-center">
<div class="w-10 h-10 flex items-center justify-center mr-4">
<i class="{{ .icon }} icon text-xl"></i>
</div>
<div>
<h3 class="font-medium">{{ .title }}</h3>
2025-09-04 09:14:04 -04:00
<p class="text-lg opacity-70">{{ .description }}</p>
2025-09-03 22:11:20 -04:00
</div>
</a>
{{ end }}
2025-09-04 09:14:04 -04:00
</div>