aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/history.html
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/templates/history.html')
-rw-r--r--newspipe/templates/history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/templates/history.html b/newspipe/templates/history.html
index 153c2f11..00e22ef3 100644
--- a/newspipe/templates/history.html
+++ b/newspipe/templates/history.html
@@ -43,7 +43,7 @@
<ul class="list-group">
{% for date in articles_counter | sort(reverse = True) %}
{% for article in articles %}
- <li class="list-group-item">{{ article.date | datetime }} - <a href="/article/{{ article.id }}">{{ article.title | safe }}</a></li>
+ <li class="list-group-item">{{ article.date | datetime }} - <a href="{{ prefix() }}/article/{{ article.id }}">{{ article.title | safe }}</a></li>
{% endfor %}
{% endfor %}
</ul>
bgstack15