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

github.com/qqhann/hugo-primer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiushi Pan <17402261+qqhann@users.noreply.github.com>2020-06-07 08:14:24 +0300
committerGitHub <noreply@github.com>2020-06-07 08:14:24 +0300
commit0588f0e8664d96fddf6ffc3f67023be3bb2fe955 (patch)
treea7762b7e88256e636e28d54c49649a112052af17
parentf614a37d35a5b02a27eef7668275b8188e1941fe (diff)
parent6be4fb0f0ba1e005ce7420dc006bf4c17928817a (diff)
Merge pull request #43 from gerrywastaken/gc/fix-menu-children-url
Fix invalid variable in child menu
-rw-r--r--layouts/partials/header.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 5dc6951..7017c78 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -14,7 +14,7 @@
<div class="Box Box--condensed position-absolute dropdown-content ">
{{ range .Children }}
<div class="Box-body" style="">
- <a href="{{ .RelPermalink }}">
+ <a href="{{ .URL }}">
{{ .Name }}
</a>
</div>