Fix link to »Blog« on demo page

The demo is hosted at https://janraasch.github.io/hugo-bearblog/, but currently the link is »/blog«, so we end up at https://janraasch.github.io/blog with a `404` 🥹.
This commit is contained in:
Jan Raasch 2022-09-15 04:00:41 +02:00
parent f8bde64964
commit 9863ab4f50

View File

@ -3,5 +3,5 @@
<a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
{{ with .Site.GetPage "/blog" }}
<a href="{{ "/blog" | relURL }}">Blog</a>
<a href="{{ .URL }}">Blog</a>
{{ end }}