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: b1f9c68a8a6b7463e43ef44702d1472a6af19be6 (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="single__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>