gallowelds.com/themes/gallo/layouts/partials/buttons.html

15 lines
350 B
HTML
Raw Normal View History

{{ if .Params.buttons }}
<div class="mt-4">
{{ range .Params.buttons}}
<a href="{{ .url }}"
><button
type="button"
class="px-3 py-2 text-xs font-medium text-center text-white bg-black rounded-lg focus:ring-4 focus:outline-none hover:bg-gray-800 transition-all duration-200"
>
{{ .text }}
</button>
</a>
{{ end }}
</div>
{{ end }}