From c2265313d8a80beed9b2edb75095e1e6d7277e1d Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Mon, 24 Dec 2018 00:37:44 +0000 Subject: [PATCH] Truncate long links in topic list --- app/templates/macros/topics.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/macros/topics.html b/app/templates/macros/topics.html index 5ef224a..8316a70 100644 --- a/app/templates/macros/topics.html +++ b/app/templates/macros/topics.html @@ -37,7 +37,7 @@ {% endif %} {% if topic.link %} - {{ topic.link | domain }} + {{ topic.link | domain | truncate(18) }} {% endif %}