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

header.html « partials « layouts - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a39c7284ba5401e69a4eca8299d2865f7c90f94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<header class="container mt-sm-5 mt-4 mb-4 mt-xs-1">
    <div class="row">
        <div class="col-sm-4 col-12 text-sm-right text-center pt-sm-4">
            <a href="/" class="text-decoration-none">
                <img id="home-image" class="rounded-circle"
                     src="{{ .Site.Params.home_image }}" />
            </a>
        </div>
        <div class="col-sm-8 col-12 text-sm-left text-center">
            <h2 class="m-0 mb-2 mt-4">
                <a href="/" class="text-decoration-none">
                    {{ .Site.Params.header_title }}
                </a>
            </h2>
            <p class="text-muted mb-1">
                {{ .Site.Params.header_subtitle }}
            </p>
            <ul id="nav-links" class="list-inline mb-2">
                {{ $currentPage := . }}
                {{ range .Site.Menus.main }}
                    <li class="list-inline-item">
                        <a class="badge badge-white {{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }}active{{end}}" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a>
                    </li>
                {{ end }}
            </ul>
            <ul id="nav-social" class="list-inline">
                {{ range .Site.Params.social }}
                    <li class="list-inline-item mr-3">
                        <a href="{{ .href }}" target="_blank">
                            <i class="{{ .fa_icon }} text-muted"></i>
                        </a>
                    </li>
                {{ end }}
            </ul>
        </div>
    </div>
    <hr />
</header>