{% load thumbnail %} {% load markup %}
{% for s in stories %} Situation: {{ s.text|safe|markdown }} {% if s.image %} {% thumbnail s.image "164x114" crop="center" as im %} {% endthumbnail %} {% endif %}
{% endfor %}
{% for img in images %} {% thumbnail img.image "164x114" crop="center" as im %} {% endthumbnail %} {% endfor %}
Law: {{ law|markdown }} {% if law_image %} {% thumbnail law_image "164x114" crop="center" as im %} {% endthumbnail %} {% endif %}
{% if theatre %} Spotlight on Theatre: {{ theatre|safe|markdown }}
{% endif %} {% if quick_howto %} Best Practices or Quick, Tell Me How to Avoid Conflict! {{ quick_howto|safe|markdown }}
{% endif %} {% if links %} Links:
{% for l in links %} {{ l.url }}
{{ l.text|markdown }}
{% endfor %} {% endif %}