Skip to content

Commit 41844b5

Browse files
committed
footer: remove trailing slashes from links
trailing slashes result in 404 for GitHub Pages when an extensionless path is used with uglyURLs enabled
1 parent d4f92f8 commit 41844b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layouts/partials/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<nav>
44
<ul>
55
<li><a href="{{ relURL "/" }}">Home</a></li>
6-
<li><a href="{{ relURL "architecture/" }}">Architecture</a></li>
7-
<li><a href="{{ relURL "reply-to-this/" }}">Reply to this</a></li>
6+
<li><a href="{{ relURL "/architecture" }}">Architecture</a></li>
7+
<li><a href="{{ relURL "/reply-to-this" }}">Reply to this</a></li>
88
</ul>
99
</nav>
1010
<a class="footer-home-link" href="{{ relURL "/" }}" aria-label="Home">

0 commit comments

Comments
 (0)