gicrisf / zhuia

An elegant but still playful theme for Zola.
Other
17 stars 10 forks source link

minor quote issue #3

Open Sphinkie opened 1 year ago

Sphinkie commented 1 year ago

Hello I think there is small error in the file macros/posts.html : some double-quotes should be replaced by simple-quotes.

For exemple, in line 69:

    <a class="label label-rounded label-secondary p-category" href="{{ get_taxonomy_url(kind="categories", name=cat ) }}">{{ cat }}</a>

should be replaced by:

    <a class="label label-rounded label-secondary p-category" href="{{ get_taxonomy_url(kind='categories', name=cat ) }}">{{ cat }}</a>

idem at line 75, for tags.

Ciao David