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

header.html « partials « layouts - github.com/peaceiris/hugo-theme-iris.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21c50a1a9541989dc3e9a2e6af2e26c500de602c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<header>
  <section class="hero is-dark is-bold">
    <div class="hero-body columns is-desktop">
      <div class="column is-8 is-offset-2">
        <h1 class="title">
          {{ if .IsHome }}
            {{ .Site.Title }}
          {{ else }}
            {{ .Title }}
          {{ end }}
        </h1>
        <p class="subtitle has-text-grey">
          {{ if .IsHome }}
            {{ .Site.Params.description }}
          {{ else }}
            {{ .Description }}
          {{ end }}
        </p>
        {{ partial "breadcrumb" . }}
      </div>
    </div>
  </section>
</header>