{% load base_tags %} {% load perm_tags %} {% load i18n %} {% has_perm request.user stories.change_story story as can_edit %}
{% if story.image %}
{{ story.title }}
{% endif %}

{% firstof story.title 'Untitled'%}

{{ story.content|striptags|truncatewords:20|safe }} {% if can_edit %} {% if story.full_story_link %}
{% trans "Links to: " %}{{ story.full_story_link }} {% endif %} {% if story.link_title %}
{% trans "Link title: " %} {{ story.link_title }} {% endif %} {% endif %}
{% include "stories/meta.html" %}