{% extends "layout.html" %} {% block css_this_page %}post.css{% endblock %} {% block title %}{{post.title}}{% endblock %} {% block content %}

{{post.title}}

written on {{post.datetime.strftime("%b %d, %y")}}

{{post.html}}
{% if post.tags %}

This entry was tagged {% set tag_counter = 0 %} {% for tag in post.tags %} {% set tag_counter = tag_counter + 1%} {{tag}} {% if tag_counter != post.tags|length %} , {% endif %} {% endfor %}

{%endif%}
~~~~~~~~ Show Source ~~~~~~~~
{# comments here#}
comments powered by Disqus {% endblock %}