diff options
Diffstat (limited to 'bn_django/journal')
-rw-r--r-- | bn_django/journal/templates/journal/linkartifact_list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bn_django/journal/templates/journal/linkartifact_list.html b/bn_django/journal/templates/journal/linkartifact_list.html index 6caaffa..7ab6d5e 100644 --- a/bn_django/journal/templates/journal/linkartifact_list.html +++ b/bn_django/journal/templates/journal/linkartifact_list.html @@ -24,11 +24,11 @@ end up at <a href="http://feeds.bnewbold.net">feeds.bnewbold.net</a>. {% for item in object_list %} <li style="margin-bottom: 8px;"/><a href="{{ item.id }}/" style="font-size:140%;">{{item.title}}</a> {% if item.html_caption %} - "{{item.html_caption|truncatewords_html:10}}"{%endif%} + "{{item.html_caption|safe|truncatewords_html:10}}"{%endif%} <br /><i style="padding-left: 15px; font-size:90%;"> added {{item.date|date:"D, M d, Y"}} - <a href="{{ item.id }}/">more info</a> - - <a href="{{ item.url }}">{{item.url}}</a></i> + {{ item.url|urlizetrunc:70 }}</i> {% endfor %} </ul> {% else %} |