Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<h1>404 - Page Not Found</h1>
<p>It seems you've wandered off the beaten digital path.</p>
<p>Perhaps a quantum fluctuation, or maybe the page just packed up and left without a forwarding address.</p>
<p>No worries, you can always navigate back to the <a href="/">/home/</a> and try again.</p></section>
<p>No worries, you can always navigate back to the <a href="{{ config.base_url }}">/home/</a> and try again.</p></section>
{% endblock content %}
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
{% set root_section = get_section(path="_index.md") %}
<header>
<nav>
<a href="/">/home/</a>
<a href="{{ config.base_url }}">/home/</a>

{# Render subsections #}
{% for subsection_path in root_section.subsections %}
Expand Down