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

nav.html « partials « layouts - github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04ebdc51890181657b2bf4266b2a7af05be8562a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="container p-fixed" style="z-index:3">
  <nav class="navbar m-2 p-2 s-rounded shadow bg-primary">
    <section class="navbar-section">
      <button class="btn btn-action btn-primary s-circle text-gray" id="pixelfont-toggle"><i class="fas fa-robot fa-lg"></i></button>
    </section>
    <section class="navbar-section">
      {{ if not .IsHome }}
        <a class="btn btn-primary" href='{{ .Site.BaseURL }}'>{{ .Site.Params.home | default "Home" }}</a>
      {{ end }}

      {{ range .Site.Menus.main }}
        <a class="btn btn-primary mx-2" href="{{ .URL }}">{{ .Name }}</a>
      {{ end }}

      {{ if .Site.Params.enableRSS }}
      <a class="btn btn-accent" href="{{ .Site.RSSLink }}" target="_blank"><i class="fas fa-rss fa-lg"></i></a>
      {{ end }}
    </section>
  </nav>
</div>