{% extends "articles/base.html" %} {% load article_tags %} {% load base_tags %} {% load base_filters %} {% load i18n %} {% 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 body %}
{% article_nav request.user article %}

{% blocktrans with headline=article.headline %}{{ headline }}{% endblocktrans %}

{% 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 %}
{% if article.source %} {% endif %} {% if article.first_name or article.last_name or article.phone or article.fax or article.email or article.website %}
{% if article.first_name or article.last_name %}
{{ article.first_name }} {{ article.last_name }}
{% endif %} {% if article.phone %}
{{ article.phone|phonenumber }}
{% endif %} {% if article.fax %}
{{ article.fax }}
{% endif %} {% if article.email %}
{{ article.email|obfuscate_email }}
{% endif %} {% if article.website %}
{{ article.website|urlize }}
{% endif %}
{% endif %}
{% fb_like_button_iframe article.get_absolute_url %}
{% include "articles/meta.html" %}
{% endblock %}