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

header.html « partials « layouts - github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1505fc09458a5fb33f7a42a7620e1c1340bd78f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<header>
  <div class="container">
    <div class="header-group">
      <div class="header-logo-container">
        <a class="header-logo-link" href="{{ .Site.BaseURL | absLangURL }}">
          {{ if .Site.Params.siteLogo }}
            <img class="header-logo-circle" src="{{ .Site.Params.siteLogo | absURL }}" alt="{{ .Site.Title }} logo">
          {{ end }}
        </a>
      </div>

      <div class="header-title">
        <a href="{{ .Site.BaseURL | absLangURL }}">
          {{ .Site.Title }}
        </a>
      </div>
    </div>
  </div>
</header>