Skip to content

Commit ec5821f

Browse files
authored
docs: Fix relative navigation links (#29468)
Release Notes: - N/A
1 parent e22cae6 commit ec5821f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/theme/index.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,13 @@
205205
<div class="nav-wrapper">
206206
<div class="nav-buttons">
207207
{{#previous}}
208-
<a rel="prev" href="{{ path_to_root }}/{{link}}" class="nav-button" title="{{title}}" aria-label="Previous chapter">
208+
<a rel="prev" href="{{ path_to_root }}{{link}}" class="nav-button" title="{{title}}" aria-label="Previous chapter">
209209
<i class="fa fa-angle-left"></i>
210210
</a>
211211
{{/previous}}
212212

213213
{{#next}}
214-
<a rel="next" href="{{ path_to_root }}/{{link}}" class="nav-button" title="{{title}}" aria-label="Next chapter">
214+
<a rel="next" href="{{ path_to_root }}{{link}}" class="nav-button" title="{{title}}" aria-label="Next chapter">
215215
<i class="fa fa-angle-right"></i>
216216
</a>
217217
{{/next}}

0 commit comments

Comments
 (0)