{% extends "_layout.html" %} {% block title %}{{ post.title }}{% endblock title %} {% block meta_tags %} {{ super() }} {% if post.description %} {% endif %} {% if post.tags %} {% endif %} {# Open Graph Tags #} {% if 'draft' not in post.meta %} {% endif %} {% if post.image or SITE_LOGO %} {% endif %} {% if post.facebook_url or DEFAULT_AUTHOR_FACEBOOK %} {% endif %} {# Twitter Specific Tags #} {% if post.twitter_username or DEFAULT_AUTHOR_TWITTER %} {% endif %} {% endblock meta_tags %} {% block content %} {# TODO: use post.image #}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %} {% if SHOW_AUTHOR %} Posted by {{ post.author }} on {{ post.date }} {% endif %} {{ post.html|safe }}

Tags

{% for tag in post.meta.get('tags') %} {{ tag }} {% endfor %}
{% endblock content %}