{% extends "base.html" %}
{% block meta %}
{% if post.description is defined %}
{% elif project_description is defined %}
{% endif %}
{% if post.image is defined %}
{% elif project_image is defined %}
{% endif %}
{% endblock %}
{% block main %}
{{ post.title }}
{% if post.date is defined %}
{{ post.date|strftime("%b %d, %Y") }}
{% endif %}
{% endblock %}