Skip to content

Commit c1d863f

Browse files
author
Derek Greer
committed
fix: Correct tag urls
1 parent d0ad764 commit c1d863f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_includes/author_tags.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2>{{ previousTag }} ({{ counter }})</h2>
1717
<ul>
1818
{% for p in site[page.collection] %}
1919
{% if p.tags contains previousTag %}
20-
<li><a href="{{ p.url }}"><span class="archive-entry">{{ p.title }}</span></a></li>
20+
<li><a href="{{site.baseurl}}{{ p.url }}"><span class="archive-entry">{{ p.title }}</span></a></li>
2121
{% endif %}
2222
{% endfor %}
2323
</ul>
@@ -30,7 +30,7 @@ <h2>{{ currentTag }} ({{ counter }})</h2>
3030
<ul>
3131
{% for p in site[page.collection] %}
3232
{% if p.tags contains currentTag %}
33-
<li><a href="{{ p.url }}"><span class="archive-entry"/>{{ p.title }}</span></a></li>
33+
<li><a href="{{site.baseurl}}{{ p.url }}"><span class="archive-entry"/>{{ p.title }}</span></a></li>
3434
{% endif %}
3535
{% endfor %}
3636
</ul>

0 commit comments

Comments
 (0)