{% load django_ogp %}
{% if ogp %}
{% comment %}===== OgpBasicProperty =================================================={% endcomment %}
{% if ogp.site %}
{% endif %}
{% if ogp.title %}
{% endif %}
{% if ogp.type %}
{% endif %}
{% if ogp.url %}
{% endif %}
{% if ogp.description %}
{% endif %}
{% if ogp.determiner %}
{% endif %}
{% comment %}===== OgpLocaleMaster =================================================={% endcomment %}
{% if ogp.locales.count == 1 %}
{% for locale in ogp.locales.all %}
{% endfor %}
{% else %}
{% for locale in ogp.locales.all %}
{% endfor %}
{% endif %}
{% comment %}===== OgpMediaProperty =================================================={% endcomment %}
{% for media in ogp.medias.all %}
{% if media.url %}
{% endif %}
{% if media.secure_url %}
{% endif %}
{% if media.type %}
{% endif %}
{% if media.media_type != 'audio' %}
{% if media.alt %}
{% endif %}
{% if media.width %}
{% endif %}
{% if media.height %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% comment %}===== OgpCustomProperty =================================================={% endcomment %}
{% if ogp_custom %}
{% if not ogp %}
{% if ogp_custom.site %}
{% endif %}
{% if ogp_custom.type %}
{% endif %}
{% if ogp_custom.url %}
{% endif %}
{% endif %}
{% for key, value in ogp_custom.property.items %}
{% endfor %}
{% endif %}