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

header.html « partials « layouts - github.com/diwao/hestia-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa8f1bff4ad9e44379d544233287bf9f781d012f (plain)
1
2
3
4
5
6
7
8
9
10
<header class="header">
  {{ $isHomePage := eq .Title .Site.Title }}{{ if eq $isHomePage true }}
  <h1><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>{{ end }}{{ if eq $isHomePage false }}<div class="site-title"><a href="/">{{ .Site.Title }}</a></div>{{ end }}
  <p class="site-desc">{{ .Site.Params.description }}</p>
  {{ if .Site.Params.googlecustomsearch }}
  <div class="search">
    <gcse:searchbox-only></gcse:searchbox-only>
  </div>
  {{ end }}
</header>