{% extends theme('base.html') %} {% from theme('macros/share.html') import share_btn with context %} {% set meta = { 'title': post.name, 'description': post.headline|mdstrip|forceescape, 'image': post.image(external=True), 'keywords': post.tags } %} {% set bundle = 'post' %} {% set body_class = 'post-display' %} {% block title %}{{ post.name }}{% endblock %} {% block breadcrumb %}
{{ _('Published on %(date)s', date=post.created_at|dateformat(format='long') ) }} {% if post.private %} {{ _('Private') }} {% endif %} {% if post.deleted %} {{ _('Deleted') }} {% endif %}