2024-08-25 17:18:20 +02:00
|
|
|
|
<nav class="pv3 ph3 ph4-ns" role="navigation">
|
|
|
|
|
<div class="flex-l justify-between items-center center">
|
2024-08-30 01:18:35 +02:00
|
|
|
|
<a href="{{ .Site.Home.RelPermalink }}" class="f3 fw2 mr3 hover-white no-underline white-90 dib">
|
2024-08-25 17:18:20 +02:00
|
|
|
|
{{ with .Site.Params.site_logo }}
|
|
|
|
|
<img src="{{ relURL . }}" class="w100 mw5-ns" alt="{{ $.Site.Title }}" />
|
|
|
|
|
{{ else }}
|
|
|
|
|
{{ .Site.Title }}
|
|
|
|
|
{{ end }}
|
|
|
|
|
</a>
|
2024-08-30 01:18:35 +02:00
|
|
|
|
<div class="SiteSearchForm di nowrap relative">
|
|
|
|
|
<form class="di" action="https://hlb0.octt.eu.org/Redirector.php">
|
2024-08-31 00:58:33 +02:00
|
|
|
|
<input class="mw5 mt2 f6 tc bg-transparent moon-gray ba b--solid b--moon-gray"
|
2024-08-30 01:18:35 +02:00
|
|
|
|
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" />
|
2024-08-31 00:58:33 +02:00
|
|
|
|
<input class="f6 bg-transparent moon-gray ba b--solid b--moon-gray" type="submit" value="{{ i18n "search" }} 🔎️" />
|
2024-08-30 01:18:35 +02:00
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2024-08-25 17:18:20 +02:00
|
|
|
|
<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>
|