{% extends "news/base.html" %}
{% load base_filters %}
{% load base_tags %}
{% load category_tags %}
{% load meta_tags %}
{% load news_tags %}
{% load tagging_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 content %}
{% tags_for_object news as tags %}
{% if news.google_profile %}
{% if news.has_google_author %}
{% trans "View Author's Google+ Profile" %}
{% elif news.has_google_publisher %}
{% trans "View Publisher's Google+ Page" %}
{% endif %}
{% endif %}
{{ news.body|safe }}
{% include "news/meta.html" with show_source=True show_contact=True show_fb_connect=True %}
{% endblock %}