{% extends "base.html" %} {% block title %}{{ post.title }} - {% endblock %} {% block head %} {% endblock %} {% block content %}

{{ post.title or '(no title)' }}

on {{ strftime(post.creation, '%Y/%m/%d') }}, {% for tag in post.tag %} #{{ tag }}, {% endfor %}

{{ post.content }}
{% endblock %}