Skip to content

Commit

Permalink
correct browse path
Browse files Browse the repository at this point in the history
  • Loading branch information
billbrod committed Dec 5, 2024
1 parent ef3dff1 commit f9fc8fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/_includes/browse.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h3>
<ul class='lists'>
{% for branch in tgt.branches %}
<li>
<a href="{{ tgt.base_url }}/branch/{{ branch }}">{{ branch }}</a>
<a href="/{{ tgt.base_url }}/branch/{{ branch }}">{{ branch }}</a>
</li>
{% endfor %}
</ul>
Expand All @@ -39,7 +39,7 @@ <h3>
<ul class='lists'>
{% for rls in tgt.releases %}
<li>
<a href="{{ tgt.base_url }}/tags/{{ rls }}">{{ rls }}</a>
<a href="/{{ tgt.base_url }}/tags/{{ rls }}">{{ rls }}</a>
</li>
{% endfor %}
</ul>
Expand All @@ -51,7 +51,7 @@ <h3>
<ul class='lists'>
{% for pull in tgt.pulls %}
<li>
<a href="{{ tgt.base_url }}/pulls/{{ pull }}">{{ pull }}</a>
<a href="/{{ tgt.base_url }}/pulls/{{ pull }}">{{ pull }}</a>
</li>
{% endfor %}
</ul>
Expand Down

0 comments on commit f9fc8fd

Please sign in to comment.