{% 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"}}

{%else%}

{{post.post_content|autop:'true'}}

{%endif%}
{%endfor%} {{info}}