Skip to content

issue for bulletin, title link and wrong tags link #164

@hongy19

Description

@hongy19
  • bulletin issue:
    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.

Image
<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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions