{% if css_file %} {% endif %}
{% if story %}

{{ story.title }}

Source: {{ url }}
{% if not show_comments and story.text %}
{{ story.text | safe }}
{% elif show_comments %} {% macro render_comment(comment, level) %}
{{ comment.text | safe }}
{% for reply in comment.comments %} {{ render_comment(reply, level + 1) }} {% endfor %}
{% endmacro %}
{% for comment in story.comments %}{{ render_comment(comment, 0) }}{% endfor %}
{% endif %}
{% endif %}