{% if single %}
{{ post.title|title|safe }}
{% else %}
{{ post.title|title|safe }}
{% endif %}
{% if post.categories|length %}
{% endif %}
{% if post.markdown %}
{{ post.content|markdown_content|gist|code|safe|image }}
{% else %}
{{ post.content|gist|code|safe|image }}
{% endif %}
{% if post.type == "post" %}
Published: {{ post.date.strftime('%Y-%m-%d') }}
{% if post.tags|length %}
{% endif %}
{% endif %}