{% extends "_layout.html" %} {% block title %} {% if not encrypted_title %} {{ post.title }} {% endif %} {% 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 not encrypted_title %} {% 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 #}

{% if encrypted_title %} {% else %} {{ post.title }} {% endif %}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %} {% if SHOW_AUTHOR %} Posted by {{ post.author }} on {% if post.published %}{{ post.published.strftime('%Y-%m-%d') }}{% endif %} {% endif %} {% if encrypted_content %}
{% else %} {{ post.html|safe }} {% endif %}
{% if post.tags %}

Tags

{% for tag in post.meta.get('tags') %} {{ tag }} {% endfor %} {% endif %}
{% endblock content %} {% block scripts %} {{ super() }} {% if encrypted_content %} {% endif %} {% endblock scripts %}