Initial commit of LucentLink files
This commit is contained in:
commit
3c4c52fe2b
20 changed files with 569 additions and 0 deletions
17
layouts/partials/link-card.html
Normal file
17
layouts/partials/link-card.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<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>
|
||||
<p class="text-sm opacity-70">{{ .description }}</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{{ end }}
|
||||
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue