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

github.com/rhnvrm/bodhi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/menu.html')
-rw-r--r--layouts/partials/menu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html
index d80d71d..911d269 100644
--- a/layouts/partials/menu.html
+++ b/layouts/partials/menu.html
@@ -2,23 +2,23 @@
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
{{if eq $currentPage.Params.url .URL }}<b>{{end}}
- <a href="{{ .URL }}">{{ .Name }}</a>
+ <a href="{{ .URL | absURL }}">{{ .Name }}</a>
{{if eq $currentPage.Params.url .URL }}</b>{{end}}
{{ end }}
<span class="right">
{{ range .Site.Menus.main_right }}
{{if eq $currentPage.Params.url .URL }}<b>{{end}}
- <a href="{{ .URL }}">{{ .Name }}</a>
+ <a href="{{ .URL | absURL }}">{{ .Name }}</a>
{{if eq $currentPage.Params.url .URL }}</b>{{end}}
{{ end }}
{{- range $index, $key := .Site.Params.Social -}}
- <a href="{{ $key.url }}" title="{{ $key.name }}">
+ <a href="{{ $key.url | absURL }}" title="{{ $key.name }}">
<i data-feather="{{ $key.icon }}"></i>
</a>
{{- end -}}
{{if eq $currentPage.Params.url "/search/" }}<b>{{end}}
- {{if and (not (isset .Site.Params "disableSearch")) (not (eq .Site.Params.disableSearch false)) }}
- <a href="/search">search<svg aria-hidden="true" class="i-search" viewBox="0 0 32 32" width="10" height="10" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"><circle cx="14" cy="14" r="12"></circle><path d="M23 23l7 7"></path></svg></a>
+ {{if and (not (isset .Site.Params "disableSearch")) (not (eq .Site.Params.disableSearch true)) }}
+ <a href="{{ "/search" | absURL }}">search<svg aria-hidden="true" class="i-search" viewBox="0 0 32 32" width="10" height="10" fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"><circle cx="14" cy="14" r="12"></circle><path d="M23 23l7 7"></path></svg></a>
{{end}}
{{if eq $currentPage.Params.url "/search/" }}</b>{{end}}
</span>