31 lines
944 B
HTML
31 lines
944 B
HTML
<nav class="navigation pure-g">
|
|
{{ if .Site.Params.showNavTitle }}
|
|
<section class="pure-u-1 pure-u-md-1-2 nav-left">
|
|
<a href="{{.Site.BaseURL}}">
|
|
<h1 class="nav-title title-shadow white">{{ .Site.Title }}</h1>
|
|
</a>
|
|
</section>
|
|
<section class="pure-u-1 pure-u-md-1-2 nav-right">
|
|
{{ with .Site.Menus.main}}
|
|
{{ range . }}
|
|
<a href="{{ .URL | relLangURL }}">{{ .Name }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</section>
|
|
{{ else }}
|
|
<section class="pure-u-1 nav-right">
|
|
{{ with .Site.Menus.main}}
|
|
{{ range . }}
|
|
<a href="{{ .URL | relLangURL }}">{{ .Name }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
<section class="pure-u-1 nav-center">
|
|
<form class="form" action="/search" method="GET">
|
|
<input class="title" type="search" name="q" id="search-query" placeholder="Search....">
|
|
<button class="button" type="submit">Search</button>
|
|
</form>
|
|
</section>
|
|
</nav>
|