Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/iCyris/hugo-theme-yuki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb28746362d8ecf0f8bcd8a8a7668a47bddd3766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ partial "head.html" . }}

<body>
<div class="header">
    <div class="site-logo__wrap">
        <div id="site-button">
            <div></div>
        </div>
        {{ $currentPage := . }}
        <div class='{{ if eq $currentPage.URL "/" }} site-logo site-logo__index {{ else }} site-logo {{ end }}'>
            <a href="/">
                {{- with .Site.Params.logo -}}
                <img src="{{ . | absURL }}" />
                {{- end -}}
            </a>
        </div>
    </div>
    {{ partial "navbar.html" . }}
</div>
<div class="main">