{% load myfilter %} {% load md2 %} {%for post in posts%}
{%if post.post_type == 'post'%}

{{post.post_title}}

{%endif%}

{% if post.post_mime_type == "markdown" %} {{post.post_content|markdown:"codehilite,nl2br,fenced_code"}} {%elif post.post_mime_type == "text/html" %} {{post.post_content|safe }} {%else%} {{post.post_content|autocode}} {%endif%}

{%endfor%} {{info}}