Files
blowfish/layouts/partials/header/header-option-simple.html
2025-09-16 07:56:02 -07:00

17 lines
479 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"
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">
{{ .Name | markdownify }}
</p>
{{ end }}
</a>