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

nav.html « partials « layouts - github.com/g1eny0ung/hugo-theme-dream.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81bd189fbd3c543e96c286070b5cd2e7b6c103ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ if or .Site.Params.backgroundDark .Site.Params.backgroundImageDark }}
<nav class="ui secondary menu dream-menu dream-nav">
{{ else if .Site.Params.darkNav }}
<nav class="ui secondary inverted menu dream-menu dream-nav">
{{ else }}
<nav class="ui secondary menu dream-menu dream-nav">
{{ end }}
  <a class="item dream-flip-toggle" title="{{ i18n "flip" }}">
    <i class="large link bullseye icon"></i>
  </a>
  <a class="item" href="{{ .Site.BaseURL }}" title="{{ i18n "home" }}">
    <i class="large link home icon"></i>
  </a>
  {{ if or .Site.Params.backgroundDark .Site.Params.backgroundImageDark }}
  <a class="item" onclick="themeSwitch(event)">
    <i class="large link icon theme-switch"></i>
  </a>
  {{ end }}
  {{ if .Site.Params.enableSearch }}
  <a class="item" title="{{ i18n "search" }}" onclick="toggleSearch(event)">
    <i class="large link search icon"></i>
  </a>
  {{ end }}
</nav>