{% extends "templates/web.html" %}
{% block title %}{{ heading or "Contact Us"}}{% endblock %}
{% block page_content %}
{% if introduction %}
{{ introduction or "" }}
{% endif %}
{% if address_title %}
{{ address_title }}
{% if address_line1 %}
{{ address_line1 }}
{% endif %}
{% if address_line2 %}
{{ address_line2 }}
{% endif %}
{% if city %}
{{ city }}
{% endif %}
{% if state %}
{{ state }}
{% endif %}
{% if pincode %}
{{ pincode }}
{% endif %}
{% if country %}
{{ country }}
{% endif %}