{% if username %} Welcome {{username}} Logout | New Post

{% else %} You are not logged in! Login | Sign Up

{% endif %}

My Blog

{% for post in myposts %}

{{post['title']}}

Posted {{post['date']}} By {{post['author']}}
Comments: {{post['comments']|length}}
{% autoescape false %} {{post['body']}} {% endautoescape %}

Filed Under: {% for tag in post.tags %} {% if loop.first %} {{tag}} {% else %} , {{tag}} {% endif %} {% endfor %} {% endfor %}