{% load indieweb_tags %}
{% if h_card.photo %} {% for photo in h_card.photo %} {% if photo.value %} {% with safe_photo=photo.value|h_card_safe_url %} {% if safe_photo %} {{ photo.alt|default:profile.name|default:user.username }} {% endif %} {% endwith %} {% else %} {% with safe_photo=photo|h_card_safe_url %} {% if safe_photo %} {{ profile.name|default:user.username }} {% endif %} {% endwith %} {% endif %} {% endfor %} {% elif profile and profile.photo_url %} {% with safe_photo=profile.photo_url|h_card_safe_url %} {% if safe_photo %} {{ profile.name|default:user.username }} {% endif %} {% endwith %} {% endif %}
{{ profile.name|default:user.username }}
{% if h_card.url %} {% for safe_url in h_card.url|h_card_safe_urls %} {% if forloop.first %} Profile {% else %} {{ safe_url }} {% endif %} {% endfor %} {% elif profile.url %} {% with safe_url=profile.url|h_card_safe_url %} {% if safe_url %} Profile {% endif %} {% endwith %} {% endif %} {% if h_card.email %} {% for email in h_card.email %} {{ email }} {% endfor %} {% endif %} {% if h_card.tel %} {% for tel in h_card.tel %} {{ tel }} {% endfor %} {% endif %} {% if h_card.note %} {% for note in h_card.note %}

{{ note }}

{% endfor %} {% endif %} {% if h_card.adr %} {% for adr in h_card.adr %}
{% if adr.locality %}{{ adr.locality }}{% endif %} {% if adr.region %}{{ adr.region }}{% endif %} {% if adr.country_name %}{{ adr.country_name }}{% endif %}
{% endfor %} {% endif %} {% if h_card.org %} {% for org in h_card.org %}
{% if org.name %}{{ org.name }}{% endif %} {% if org.url %} {% with safe_org_url=org.url|h_card_safe_url %} {% if safe_org_url %}{{ safe_org_url }}{% endif %} {% endwith %} {% endif %}
{% endfor %} {% endif %}