{% extends "base.html" %} {% load comments i18n %} {% load fnp_common migdal_tags fnp_share %} {% block titleextra %}{{ entry.title }} :: {% endblock %} {% block ogtitle %}{{ entry.title }}{% endblock %} {% block ogtype %}article{% endblock %} {% block ogdescription %}{{ entry.lead|striptags|truncatewords:16 }}{% endblock %} {% block ogimage %}{% spaceless %} {% if entry.image %} {{ entry.image.url|build_absolute_uri:request }} {% else %} {{ block.super }} {% endif %} {% endspaceless %}{% endblock %} {% block headextra %} {% if entry.canonical_url %}{% endif %} {% endblock %} {% block body %} {% if not entry.published %}

{% trans "This entry hasn't been published yet." %}

{% endif %}
{% entry_begin entry 1 %}
{{ entry.body }} {% for inline_html in entry.inline_html %}
{{ inline_html|safe }}
{% endfor %}
{% if entry.get_type.commentable %} {% render_comment_list for entry %}
{% entry_comment_form entry %}
{% endif %}
{% endblock %}