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

header.html « partials « layouts - github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa0018fb82160a1393881e6caebdb5e57a6855af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}
<body>
    <div id="sitelogo">
        <a class="glyph" alt="Home" href="{{ .Site.BaseURL }}"><img src="{{ .Site.BaseURL }}images/site-logo.svg" alt="Site Logo" height="64px" width="64px"></a>
    </div>
    <header>        
        {{ partial "pagenav.html" . }}
        {{ if not .IsPage }}
        <div id="site-header">
            <h1>{{ .Site.Title }}</h1>
            {{ with .Site.Params.subtitle }}
            <p>
              {{ . }}
            </p>
            {{ end }}
        </div>
        {{ end }}
    </header>