{% extends 'base.html' %}
{% block title %} {{entry.title}} | BrandX {% endblock title %}
{% block content %}
{{entry.title}}
{% if user.is_authenticated and user == entry.author %}
{% endif %}
By: {{entry.author}}
, {{ entry.created|date }}
{% if entry.modified != entry.created %}
Updated: {{ entry.modified|date }}
{% endif %}
{{ entry.md_content}}
{% endblock content %}