From ac0a0d168661f8453a9ec8436a3581c96b59cf44 Mon Sep 17 00:00:00 2001 From: Krishna Sundarram Date: Mon, 4 Dec 2017 09:05:10 +0000 Subject: [PATCH] Fix typo in the header URL The hugo docs (https://gohugo.io/content-management/organization/) specify that the default location for a user's posts is in the `posts/` directory. This change fixes the archive link for users who stick to the default. --- layouts/partials/nav.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html index 1dbf68c..4904499 100644 --- a/layouts/partials/nav.html +++ b/layouts/partials/nav.html @@ -3,7 +3,7 @@ {{ if not .IsHome }} {{ with .Site.Params.home }}{{ . }}{{ else }}Home{{ end }} {{ end }} - {{ with .Site.Params.archive }}{{ . }}{{ else }}Archive{{ end }} + {{ with .Site.Params.archive }}{{ . }}{{ else }}Archive{{ end }} {{ with .Site.Params.tags }}{{ . }}{{ else }}Tags{{ end }} {{ with .Site.Params.about }}{{ . }}{{ else }}About{{ end }}