tfcconnection-zola/layouts/partials/header/header-mobile-option-simple.html

14 lines
505 B
HTML

<li class="mt-1">
<a href="{{ .URL }}" {{ if or (strings.HasPrefix .URL "http:" ) (strings.HasPrefix .URL "https:"
) }} target="_blank" {{ end }} class="flex items-center">
{{ if .Pre }}
<div {{ if and .Pre .Name}} class="mr-2" {{ end }}>
{{ partial "icon.html" .Pre }}
</div>
{{ end }}
<p class="text-6xl mt-6 text-white hover:text-blue-900" title="{{ .Title }}">
{{ .Name | markdownify | emojify }}
</p>
</a>
</li>