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

github.com/tblyler/light-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Blyler <tony@blyler.cc>2016-11-03 16:37:02 +0300
committerTony Blyler <tony@blyler.cc>2016-11-03 16:37:02 +0300
commite97f173f831f200839baac39e4990c937a662773 (patch)
tree236f397f59c03ef6c624569b4ee21358c341f5a7
parentdecd168757ef54b37f78b46fdffcee8a9a766a91 (diff)
Fix bad archive link in header
-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 cf9e48a..dbfa819 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -53,7 +53,7 @@
<div class="links">
<a href="{{ .Site.BaseURL }}">Home</a>
{{ range first 1 (where .Site.Pages "Type" "post") }}
- <a href="{{ .Site.BaseURL }}post/">Archive</a>
+ <a href="{{ .Site.BaseURL }}/post/">Archive</a>
{{ end }}
{{ range where .Site.Pages "Type" "!=" "post" }}
<a href="{{ .Permalink }}">{{ .Title }}</a>