summaryrefslogtreecommitdiff
path: root/layouts/partials/header.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r--layouts/partials/header.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 7b728a6..9195345 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,7 +1,12 @@
<header class="site__header" role="banner">
<a href="{{ site.Home.RelPermalink }}" rel="home" class="site-{{ if site.Params.logo }}logo{{ else }}title{{ end }}">
- {{ with site.Params.logo}}{{ . }}{{ else }}{{ site.Title }}{{end}}
+ {{- with site.Params.logo }}
+ <img src="{{ . }}" alt="{{ site.Title }}" />
+ {{- else }}
+ {{ site.Title }}
+ {{- end }}
</a>
- {{ partial "navmenu.html" (dict "menuID" "main" "page" .) }}
+ {{- partial "selectTheme.html" . }}
+ {{- partial "selectLanguage.html" . }}
</header>