This repository has been archived on 2026-05-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blowfish/layouts/partials/badge.html
T

18 lines
677 B
HTML

<span class="flex cursor-pointer">
{{ $linkTitle := . }}
{{ $useSecondaryColor := false }}
{{ if (reflect.IsMap . ) }}
{{ $linkTitle = .linkTitle }}
{{ $useSecondaryColor = cond (not .useSecondaryColor) false .useSecondaryColor }}
{{ end }}
{{ if $useSecondaryColor }}
<span
class="rounded-md border border-secondary-400 px-1 py-[1px] text-xs font-normal text-secondary-700 dark:border-secondary-600 dark:text-secondary-400">
{{ else }}
<span
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
{{ end }}
{{ $linkTitle }}
</span>
</span>