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

14 lines
531 B
HTML
Raw Normal View History

2023-01-14 21:58:22 +00:00
<li class="mt-1">
2023-01-14 02:09:45 +00:00
<a href="{{ .URL }}" {{ if or (strings.HasPrefix .URL "http:" ) (strings.HasPrefix .URL "https:"
2024-02-11 14:15:59 +01:00
) }} target="_blank" {{ end }} class="flex items-center text-gray-500 hover:text-primary-600 dark:hover:text-primary-400">
2023-01-14 02:09:45 +00:00
{{ if .Pre }}
2023-01-14 21:58:22 +00:00
<div {{ if and .Pre .Name}} class="mr-2" {{ end }}>
2023-01-14 02:09:45 +00:00
{{ partial "icon.html" .Pre }}
2023-01-14 21:58:22 +00:00
</div>
2023-01-14 02:09:45 +00:00
{{ end }}
<p class="text-bg font-bg" title="{{ .Title }}">
{{ .Name | markdownify }}
2023-01-14 02:09:45 +00:00
</p>
</a>
</li>