blowfish/layouts/partials/header/header-option-simple.html

11 lines
480 B
HTML
Raw Normal View History

2023-01-13 20:09:45 -06:00
<a href="{{ .URL }}" {{ if or (strings.HasPrefix .URL "http:" ) (strings.HasPrefix .URL "https:" ) }} target="_blank" {{
2024-02-11 07:15:59 -06:00
end }} class="flex items-center text-gray-500 hover:text-primary-600 dark:hover:text-primary-400">
2023-01-13 20:09:45 -06:00
{{ if .Pre }}
2023-01-14 07:10:55 -06:00
<span {{ if and .Pre .Name}} class="mr-1" {{ end }}>
2023-01-13 20:09:45 -06:00
{{ partial "icon.html" .Pre }}
</span>
{{ end }}
<p class="text-base font-medium" title="{{ .Title }}">
2023-01-13 20:09:45 -06:00
{{ .Name | markdownify | emojify }}
</p>
</a>