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

header-nav.html « partials « layouts - github.com/zwbetz-gh/cayman-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d01b0bf2fc03be07512ce8006e575c500c135bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<section class="page-header">
  <h1 class="project-name">
    {{ $.Site.Params.project_name | default "project_name goes here" | markdownify }}
  </h1>
  <h2 class="project-tagline">
    {{ $.Site.Params.project_tagline | default "project_tagline goes here" | markdownify }}
  </h2>
  <nav>
    {{ $current := . }}
    {{ range .Site.Menus.nav }}
      {{ $active := or ($current.IsMenuCurrent "nav" .) ($current.HasMenuCurrent "nav" .) }}
      {{ $active = or $active (eq .Name $current.Title) }}
      {{ $active = or $active (and (eq .Name "Blog") (eq $current.Section "post")) }}
      {{ $active = or $active (and (eq .Name "Tags") (eq $current.Section "tags")) }}
      <a href="{{ .URL }}" class="btn">{{ .Name }}</a>
    {{ end }}
  </nav>
</section>