{% extends "news/base.html" %} {% load news_tags %} {% load tagging_tags %} {% load base_tags %} {% load base_filters %} {% load category_tags %} {% load i18n %} {% load meta_tags %} {% block title %}{{ news.get_title }}{% endblock %} {% block meta_description %}{{ news.get_description }}{% endblock %} {% block meta_keywords %}{{ news.get_keywords }}{% endblock %} {% block meta_canonical_url %}{% endblock %} {% block extra_head %} {% meta_og_image news "thumbnail" %} {% meta_og_image news "body" %} {{ block.super }} {% endblock %} {% block body %} {% tags_for_object news as tags %}
{% news_nav request.user news %}
{% news_options request.user news %}

{{ news.headline }}

{% if news.google_profile %} {% if news.has_google_author %} View author's Google+ profile {% elif news.has_google_publisher %} View publisher's Google+ page {% endif %} {% endif %}
{{ news.body|safe }}
{% include "news/meta.html" %}

{% fb_like_button_iframe news.get_absolute_url %}

{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}