-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Useless back arrow #130
Comments
I've just ran into the same issue. I believe there's some issue with Jekyll's custom filters. A fix is to add your own {% assign back_page = site.pages | where: "name", page.back_page | first %}
{% if back_page != null %}
<p class="back-link">
<a href="{{ back_page.url | relative_url }}"><span class="back-arrow icon">{% include svg/back-arrow.svg %}</span>{{ back_page.short_title | default: back_page.title }}</a>
</p>
{% endif %} My only change from the original file is the |
Yeah, so the |
(#130 on Hydeout)[fongandrew/hydeout#130]
The theme has a back arrow at the top of pages. E.g., on the about page.
This back arrow link does not link back to the home page, but just refreshes the page.
Should we remove it? How?
The text was updated successfully, but these errors were encountered: