mirror of https://gitlab.com/octtspacc/sitoctt
38 lines
1.7 KiB
HTML
38 lines
1.7 KiB
HTML
<nav class="pv3 ph3 ph4-ns" role="navigation">
|
||
<div class="flex-l justify-between items-center center">
|
||
<a href="{{ .Site.Home.RelPermalink }}" class="f3 fw2 mr3 hover-white no-underline white-90 dib">
|
||
{{ with .Site.Params.site_logo }}
|
||
<img src="{{ relURL . }}" class="w100 mw5-ns" alt="{{ $.Site.Title }}" />
|
||
{{ else }}
|
||
{{ .Site.Title }}
|
||
{{ end }}
|
||
</a>
|
||
<div class="SiteSearchForm di nowrap relative">
|
||
<form class="di" action="https://hlb0.octt.eu.org/Redirector.php">
|
||
<input class="mw5 mt2 f6 tc bg-transparent moon-gray ba b--solid b--moon-gray"
|
||
type="text" name="_query[]" required="required" placeholder="{{ i18n "searchNoJs" }}... 🔎️" />
|
||
<div class="di">
|
||
<input type="hidden" name="url" value="https://yacy.spacc.eu.org/yacysearch.html">
|
||
<input type="hidden" name="_query[]" value="site:sitoctt.octt.eu.org" />
|
||
<input class="f6 bg-transparent moon-gray ba b--solid b--moon-gray" type="submit" value="{{ i18n "search" }} 🔎️" />
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<div class="flex-l items-center">
|
||
{{ partial "i18nlist.html" . }}
|
||
{{ if .Site.Menus.main }}
|
||
<ul class="{{ cond (eq $.Site.Language.LanguageDirection "rtl") "pr0 ml3" "pl0 mr3" }}">
|
||
{{ range .Site.Menus.main }}
|
||
<li class="list f5 f4-ns fw4 dib {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl3" "pr3" }}">
|
||
<a class="hover-white no-underline white-90" href="{{ .URL }}" title="{{ i18n "pageTitle" . }}">
|
||
{{ .Name }}
|
||
</a>
|
||
</li>
|
||
{{ end }}
|
||
</ul>
|
||
{{ end }}
|
||
{{ partialCached "social-follow.html" . }}
|
||
</div>
|
||
</div>
|
||
</nav>
|