18 lines
677 B
HTML
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>
|