Split logo into separate partial

This commit is contained in:
vimux 2020-02-05 12:09:41 -05:00
parent 8c43dc704e
commit a03c5ca663
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
<header class="header">
<a class="logo" href="{{ "" | relLangURL }}">{{ .Site.Title }}</a>
{{ partial "header_logo.html" . }}
{{ partial "header_menu.html" . }}
</header>

View file

@ -0,0 +1 @@
<a class="logo" href="{{ "" | relLangURL }}">{{ .Site.Title }}</a>