Skip to content

Commit a9fcd61

Browse files
author
Matthieu Nogatchewsky
committed
Implement footer bug correction
1 parent b995692 commit a9fcd61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

theme/partials/footer.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="md-footer-nav">
55
<nav class="md-footer-nav__inner md-grid">
66
{% if page.previous_page %}
7-
<a href="{{ page.previous_page.url }}" title="{{ page.previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
7+
<a href="{{ page.previous_page.url|url }}" title="{{ page.previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
88
<div class="md-flex__cell md-flex__cell--shrink">
99
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
1010
</div>
@@ -19,7 +19,7 @@
1919
</a>
2020
{% endif %}
2121
{% if page.next_page %}
22-
<a href="{{ page.next_page.url }}" title="{{ page.next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
22+
<a href="{{ page.next_page.url|url }}" title="{{ page.next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
2323
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
2424
<span class="md-flex__ellipsis">
2525
<span class="md-footer-nav__direction">
@@ -50,4 +50,4 @@
5050
{% endblock %}
5151
</div>
5252
</div>
53-
</footer>
53+
</footer>

0 commit comments

Comments
 (0)