{% extends "articles/base.html" %} {% load article_tags %} {% load base_filters %} {% load base_tags %} {% load meta_tags %} {% block title %}{% blocktrans with title=article.title %}{{ title }}{% endblocktrans %}{% endblock %} {% block meta_description %}{% blocktrans with description=article.description %}{{ description }}{% endblocktrans %}{% endblock %} {% block meta_keywords %}{% blocktrans with keywords=article.get_keywords %}{{ keywords }}{% endblocktrans %}{% 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 %}
{% blocktrans with body=article.body|safe %}{{ body }}{% endblocktrans %}
{% include "articles/meta.html" with show_source=True show_fb_connect=True %}
{% endblock %}