congo/layouts/shortcodes/button.html

10 lines
354 B
HTML
Raw Permalink Normal View History

<a
class="inline-block !rounded-md bg-primary-600 px-4 py-1 !text-neutral !no-underline 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 }}
2022-11-07 05:31:28 +00:00
{{ with .Get "download" }}download="{{ . }}"{{ end }}
2021-08-16 05:09:21 +00:00
role="button"
>
{{ .Inner }}
</a>