gallowelds.com/themes/gallo/layouts/partials/buttons.html
brooke c56a9dd2ff
All checks were successful
Hugo / build (push) Successful in 9s
button support for small screens
2024-06-09 22:12:59 -04:00

14 lines
366 B
HTML

{{ if .Params.buttons }}
<div class="mt-4">
{{ range .Params.buttons}}
<a href="{{ .url }}"
><button
type="button"
class="px-4 py-4 sm:py-2 sm:px-3 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 }}