The "going back" arrow, visible in recipe pages, points to "/".
This is an issue when hosting the template on Github pages, because the pages root may not be "/".
The part responsible of this is the following:
|
<a href="/" class="back bg-white rounded-full block absolute top-6 md:top-10 left-6 md:left-10 p-4 md:p-6 z-10"> |
I managed to fix this issue by changing it to:
<a href="{{ site.baseurl }}/" class="back bg-white rounded-full block absolute top-6 md:top-10 left-6 md:left-10 p-4 md:p-6 z-10">
The "going back" arrow, visible in recipe pages, points to
"/".This is an issue when hosting the template on Github pages, because the pages root may not be
"/".The part responsible of this is the following:
chowdown/_layouts/recipe.html
Line 10 in 2e100f4
I managed to fix this issue by changing it to:
<a href="{{ site.baseurl }}/" class="back bg-white rounded-full block absolute top-6 md:top-10 left-6 md:left-10 p-4 md:p-6 z-10">