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

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

{% endif %}

My Blog

{% for post in myposts %}

{{post.value.title}}

Posted {{post['date']}} By {{post.value.author}}

{% autoescape false %} {{post.value.body}} {% endautoescape %}

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