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

github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHumberto Rocha <humrochagf@gmail.com>2020-10-30 16:17:34 +0300
committerGitHub <noreply@github.com>2020-10-30 16:17:34 +0300
commita57ff5613785e13ee8a76933d2987529c8d5dd0e (patch)
tree390637e1c4dfc4ebbcba335cff4c403204c3117b
parent76ccbf7303bfc243546504bb553b76b25e74f9e3 (diff)
parentff63da8bbdc82269b05f6f8f80f430b07c024be6 (diff)
Merge pull request #4 from rgerardi/fix-header-links
Fix header links language
-rw-r--r--layouts/partials/header.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 1505fc0..2e7fd55 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -2,7 +2,7 @@
<div class="container">
<div class="header-group">
<div class="header-logo-container">
- <a class="header-logo-link" href="{{ .Site.BaseURL | absLangURL }}">
+ <a class="header-logo-link" href="{{ "/" | absLangURL }}">
{{ if .Site.Params.siteLogo }}
<img class="header-logo-circle" src="{{ .Site.Params.siteLogo | absURL }}" alt="{{ .Site.Title }} logo">
{{ end }}
@@ -10,7 +10,7 @@
</div>
<div class="header-title">
- <a href="{{ .Site.BaseURL | absLangURL }}">
+ <a href="{{ "/" | absLangURL }}">
{{ .Site.Title }}
</a>
</div>