kaiiiz / hugo-theme-monochrome

Monochrome is a fast, clean and responsive hugo theme
https://kaiiiz.github.io/hugo-theme-monochrome/
MIT License
171 stars 52 forks source link

Permalink produces a " character for postcard layout in live build. #42

Closed shervinsahba closed 9 months ago

shervinsahba commented 1 year ago

Hi kaiiiz. First of all, thank you for the lovely theme!

On my live build, the postcard links are broken. It appears that the call to {{ .Permalink }} here causes a quotation character to be inserted in the URL for some reason.

Here is an example from my site. Clicking the postcard fails on Firefox and breaks on Chrome. I printed the output of {{ .Permalink }} and saw this image

The actual page does exist if you retype the URL without the quotation mark. The quote seems to only appear for postcards from what I've seen so far.

Did I mess something up, or is this a bug?

shervinsahba commented 1 year ago

I made this hacky fix to the problematic line in layout.html. I don't know what the underlying issue was, but this is working for now, I think.

Changed

<a href="{{ .Permalink }}">

to

<a href="{{ .Permalink | replaceRE "\"" ""}}">

kaiiiz commented 11 months ago

Can you provide your BaseURL setting? I think this is caused by a inappropriate " suffix in your BaseURL setting.

kaiiiz commented 9 months ago

Closed due to inactivity.