hugo-theme-hello-friend/layouts/partials/logo.html

12 lines
440 B
HTML
Raw Normal View History

2018-07-20 19:14:22 +02:00
<a href="{{ .Site.BaseURL }}" 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__mark">></span>
<span class="logo__text">{{ with .Site.Params.Logo.logoText }}{{ . }}{{ else }}hello friend{{ end }}</span>
<span class="logo__cursor"></span>
{{ end }}
2018-07-20 19:14:22 +02:00
</div>
</a>