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

header.html « partials « layouts - github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 740eb250fd790e69db023f1d99e668cf3b9e1b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<section class="hero is-primary shadow-hero {{ if .Site.Params.heroBold }}is-bold{{ end }}">
  <div class="hero-head">
    {{ partial "nav.html" . }}
  </div>
  <div class="hero-body">
    <div class="container has-text-centered">
      <h1 class="title">
        {{ .Site.Title }}
      </h1>
      {{ if .Site.Params.subtitle }}
      <h2 class="subtitle">
        {{ .Site.Params.subtitle }}
      </h2>
      {{ end }}
    </div>
  </div>
</section>