{% load i18n static %}

OpenGraph attributes

{% if not is_valid %}

{% trans 'Some OpenGraph required attributes are missing. Please check the official website for more information.' %}

{% endif %} {% for k, v in og_attrs.items %} {% endfor %}
{% trans "Variable" %} {% trans "Value" %}
{{ k }} {{ v }}
{% if image %}{% endif %} {% if comments %} {% endif %}

Other standard meta informations

{% if title is not None %}

Page title (using the title tag): {{ title }}

{% else %}

{% trans "You should provide a title to your page" %}

{% endif %} {% for k, v in meta_attrs.items %} {% endfor %}
{% trans "Variable" %} {% trans "Value" %}
{{ k }} {% if v is None %}{% trans "(missing value)" %}{% else %}{{ v }}{% endif %}