Breadcrumbs links are broken
The file layout/partials/breadcrumbs.html is using Permalink
instead of RelPermalink
in line 38:
<a href="{{ .p1.Permalink }}">{{ if eq .p1.Params.format_title false }}{{ .p1.Title | safeHTML }}{{ else }}{{ .p1.Title | safeHTML | title }}{{ end }}</a>
This causes links to point to "https:/localhost:1313/" instead of just "/", which cause the links to not work when published. Changing it toRelPermalink
fixes this.