summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/shortcodes/button.html
blob: 8bddea14187e60af0961d00314c0733f5a2778a7 (plain)
1
2
3
4
5
6
7
8
9
<a
  class="!rounded-md bg-primary-600 px-4 py-2 !text-neutral !no-underline hover:!bg-primary-500 dark:bg-primary-800 dark:hover:!bg-primary-700"
  {{ with .Get "href" }}href="{{ . }}"{{ end }}
  {{ with .Get "target" }}target="{{ . }}"{{ end }}
  {{ with .Get "rel" }}rel="{{ . }}"{{ end }}
  role="button"
>
  {{ .Inner }}
</a>