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

header.html « partials « layouts - github.com/jacobsun/hugo-theme-cole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fed4f856ee3d50724d073398aeded6c122792a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<header class="header">
    <a href="{{ .Site.BaseURL }}" class="btn logo-link">
        <img class="logo" src="{{ "images/logo.svg" | absURL }}" alt="logo" />
    </a>
    <ul class="control menu">
            {{ range .Site.Menus.main }}
            <li>
                <a href="{{ .URL }}" class="btn">
                    {{ .Name }}
                </a>
            </li>
            {{ end }}
    </ul>
</header>