<li>
<p>authentication mechanism and password scheme</p>
</li>
[params]
customcss = ["css/custom.css"]
li > p {
display: inline;
}
baseURL = 'https://www.hongy19.net/blog/'
fix is simple, update "themes/archie/layouts/partials/head.html"
<!-- <a href="{{ absLangURL "/" }}">{{ .Site.Title }}</a> -->
<a href="{{ .Site.Home.RelPermalink }}">{{ .Site.Title }}</a>
<!-- <a href="{{ .URL }}">{{ .Name }}</a> -->
<a href="{{ .URL | relURL }}">{{ .Name }}</a>
<!--<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a></li> -->
<li><a href="{{ (printf "tags/%s/" (. | urlize)) | relURL }}">{{ . }}</a></li>
Html of bulletin is wrong (see picture below) since I has sub-bulletin. Markdown requirement is list item includes "block content", need to use
to include block. In order to fix it , need to change it it inline in custom.css.
In hugo.toml, I set baseUrl but title link is 'https://www.hongy19.net', not 'https://www.hongy19.net/blog/'
fix is simple, update "themes/archie/layouts/partials/head.html"
The tag link in post page is "https://www.hongy19.net/tags/hugo/" and it is wrong. Correct link should be "https://www.hongy19.net/blog/tags/hugo/".
update "themes/archie/layouts/_default/single.html" :