aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/templates/home.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/templates/home.html b/newspipe/templates/home.html
index aa2b1889..c292a32f 100644
--- a/newspipe/templates/home.html
+++ b/newspipe/templates/home.html
@@ -178,7 +178,7 @@
</td>
{% endif %}
<td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}>
- <a href="{{ prefix }}/article/{{ article.id }}" title="{{ article.title }}">{{ article.title | truncate(100, False, '...') }}</a>
+ <a href="{{ prefix() }}/article/{{ article.id }}" title="{{ article.title }}">{{ article.title | truncate(100, False, '...') }}</a>
</td>
<td class="date d-none d-lg-block">{{ article.date | datetime(format='short') }}</td>
</tr>
bgstack15