{% extends "blog/base.html" %}
{% load i18n humanize %}
{% block title %}{{ post.title }}{% endblock %}
{% block meta_author %}{{ post.author }}{% endblock %}
{% block meta_description %}{{ post.meta_description }}{% endblock %}
{% block meta_keywords %}{{ post.meta_keywords }}{% endblock %}
{% block header %}{% trans "Blog" %}/{{ post.title }}{% endblock %}
{% block content %}
{{ post.article|safe }}
{% blocktrans with datetime=post.published_at hunantime=post.published_at|naturaltime author=post.author %}Posted by {{ author }}.{% endblocktrans %}
{% endblock %}