diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-09 17:31:27 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-09 17:31:27 -0300 |
commit | 6d88b28c14979059df16cec340de783d8b536c1c (patch) | |
tree | be6eee765b6b8574b1424dfd26e9bde1c3ef503c /layouts | |
parent | 045c2e349504e0e1394f4ca497d8899c1e89ca47 (diff) | |
download | hugo-bearcub-6d88b28c14979059df16cec340de783d8b536c1c.tar.gz hugo-bearcub-6d88b28c14979059df16cec340de783d8b536c1c.tar.bz2 |
Use site.Home.Permalink instead of param
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/header.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html index f8e3fd8..dc82280 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,2 +1,2 @@ -<a href="{{ .Site.Language.Params.params.home }}" class="title"><h2>{{ .Site.Title }}</h2></a> +<a href="{{ site.Home.Permalink }}" class="title"><h2>{{ .Site.Title }}</h2></a> <nav>{{- partial "nav.html" . -}}</nav> |