congo/layouts/shortcodes/button.html

9 lines
285 B
HTML
Raw Normal View History

<a
2021-08-20 07:02:08 +00:00
class="px-4 py-2 !text-neutral !no-underline !rounded-md bg-primary-600 hover:!bg-primary-500 dark:bg-primary-800 dark:hover:!bg-primary-700"
2021-08-16 05:09:21 +00:00
{{ with .Get "href" }}href="{{ . }}"{{ end }}
{{ with .Get "target" }}target="{{ . }}"{{ end }}
role="button"
>
{{ .Inner }}
</a>