{% extends "articles/base.html" %}
{% load article_tags %}
{% load base_filters %}
{% load base_tags %}
{% load meta_tags %}
{% block title %}{{ article.get_title }}{% endblock %}
{% block meta_description %}{{ article.get_description }}{% endblock %}
{% block meta_keywords %}{{ article.get_keywords }}{% endblock %}
{% block meta_canonical_url %}{% endblock %}
{% block extra_head %}
{% meta_og_image article "body" %}
{{ block.super }}
{% endblock %}
{% block content %}
{% if article.google_profile %}
{% if article.has_google_author %}
{% trans "View Author's Google+ Profile" %}
{% elif article.has_google_publisher %}
{% trans "View Publisher's Google+ Page" %}
{% endif %}
{% endif %}
{{ article.body|safe }}
{% include "articles/meta.html" with show_source=True show_fb_connect=True %}
{% endblock %}