chrisbobbe / jekyll-theme-prologue

A Jekyll version of the "Prologue" theme by HTML5 UP
https://chrisbobbe.github.io/jekyll-theme-prologue/
Other
427 stars 937 forks source link

Absolute link paths #55

Open ghost opened 4 years ago

ghost commented 4 years ago

The generated HTML contains absolute paths, example:

<a href="http://0.0.0.0:4000/categories/" id="categories-link" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);">
    <span class="icon fa-link">Categories</span>
 </a>

and of course it doesn't work. How to set it to generate paths relative to the website's root? I.e.

<a href="categories/" id="categories-link" style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);">
    <span class="icon fa-link">Categories</span>
 </a>