congo/layouts/partials/logo.html

35 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2022-11-10 00:32:43 +00:00
{{- if .Site.Params.header.logo }}
{{- $logo := resources.Get .Site.Params.header.logo }}
2023-04-27 21:11:41 +00:00
{{- $logo_dark := resources.Get .Site.Params.header.logoDark }}
{{- if $logo }}
<a href="{{ "" | relLangURL }}" class="mr-2">
2023-12-26 00:56:32 +00:00
<!-- prettier-ignore-attribute -->
2023-04-13 07:57:46 +00:00
<img
src="{{ $logo.RelPermalink }}"
width="{{ div $logo.Width 2 }}"
height="{{ div $logo.Height 2 }}"
2023-12-26 00:22:55 +00:00
class="max-h-[10rem] max-w-[10rem] object-scale-down object-left
{{ if $logo_dark }}hidden dark:flex{{ end }}"
2023-04-13 07:57:46 +00:00
alt="{{ .Site.Title }}"
/>
2023-04-27 21:11:41 +00:00
{{- if $logo_dark }}
2023-12-26 00:22:55 +00:00
<img
src="{{ $logo_dark.RelPermalink }}"
width="{{ div $logo_dark.Width 2 }}"
height="{{ div $logo_dark.Height 2 }}"
class="max-h-[10rem] max-w-[10rem] object-scale-down object-left dark:hidden"
alt="{{ .Site.Title }}"
/>
{{- end }}
</a>
2022-11-10 00:32:43 +00:00
{{- end }}
{{- end }}
{{- if .Site.Params.header.showTitle | default true }}
<a
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2"
rel="me"
href="{{ "" | relLangURL }}"
>{{ .Site.Title | markdownify | emojify }}</a
>
{{- end }}