www.byjp.me/themes/hello-friend-ng/layouts/partials/logo.html
2022-10-23 15:33:18 +01:00

11 lines
717 B
HTML

<a href="{{ if .Site.Params.Logo.LogoHomeLink }}{{ .Site.Params.Logo.LogoHomeLink }}{{ else }}{{ .Site.BaseURL | relLangURL }}{{ end }}" style="text-decoration: none;">
<div class="logo">
{{ if .Site.Params.Logo.path }}
<img src="{{ .Site.Params.Logo.path }}" alt="{{ .Site.Params.Logo.alt }}" />
{{ else }}
<span class="logo__text">{{ with .Site.Params.Logo.logoText }}{{ . }}{{ else }}byjp{{ end }}</span>
{{ if .IsHome }}{{ else }}<span class="logo__mark">{{ with .File }}{{ .Path | replaceRE "^/" "" | replaceRE "/index.md$" ".md" | replaceRE ".md$" "" | urlize }}{{end}}</span>{{ end }}
<span class="logo__cursor"></span>
{{ end }}
</div>
</a>