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

header.html « main « partials « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dfc8595f67f205d1f65b666b1c787fbf33de1a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="top">
  <div class="header__wrapper bgcolor__header">
    <div class="divider">
      <div class="lmr">
        <h2 class="title">{{ .Title }}</h2>
      </div>
    </div>
  </div>

  <div class="header__wrapper bgcolor__breadcrumb">
    <div class="divider">
      <div class="lmr flexbox">
        {{ if $.Param "enableBreadcrumb" }}
          {{ partial "main/component/breadcrumb.html" . }}
        {{ end }}
        <div class="grow"></div>
        {{ partial "main/component/edit-this-page.html" . }}
      </div>
    </div>
  </div>
</div>