Files
blowfish/layouts/partials/header/header-option-simple.html
2025-12-27 17:31:53 +08:00

18 lines
548 B
HTML

<a
href="{{ .URL }}"
{{ if or (strings.HasPrefix .URL "http:" ) (strings.HasPrefix .URL "https:" ) }}target="_blank"{{ end }}
class="flex items-center hover:text-primary-600 dark:hover:text-primary-400"
{{ with or .Name .Pre }}aria-label="{{ . }}"{{ end }}
title="{{ .Title }}">
{{ if .Pre }}
<span {{ if and .Pre .Name }}class="mr-1"{{ end }}>
{{ partial "icon.html" .Pre }}
</span>
{{ end }}
{{ if .Name }}
<p class="text-base font-medium break-normal">
{{ .Name | markdownify }}
</p>
{{ end }}
</a>