{# Parameters are: #} {# * pub: publication itself; pub.meta must have been eval() #} {# * threads: list of parent, from top to bottom, including itself #} {# #} {# * views: a view object used to know which view to use for links #} {# #} {# {% extends embed|yesno:"website/single.html,website/base.html" %} #} {% load i18n %} {% load thumbnail %} {# {% load website_views %} #}
{% for post in object_list %} {% if 'date' in list.fields or 'time' in list.fields %} {% with post_date=post.get_date %} {% endwith %} {% endif %} {% if 'image' in list.fields %} {% with post_image=post.get_image %} {% endwith %} {% endif %} {% if 'title' in list.fields %} {% with post_title=post.get_title %}

post_title

{% endwith %} {% endif %} {% if 'content' in list.fields %} {% with post_content=post.get_content %}
{{ post_content|safe|striptags|truncatechars:"64" }}
{% endwith %} {% endif %}
{% endfor %}