{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Contact" %}{% endblock %} {% block content %}

{% trans "Contact Information" %}

{% if contact_info %}
{% for contact in contact_info %}
{% if contact.icon_class %} {% endif %}

{{ contact.label }}

{% if contact.link %} {{ contact.value }} {% else %}

{{ contact.value }}

{% endif %}
{% endfor %}
{% endif %} {% if social_profiles %}

{% trans "Professional Profiles" %}

{% endif %} {% if skills %}

{% trans "Skills & Expertise" %}

{% regroup skills by category as skill_categories %} {% for category in skill_categories %}

{{ category.grouper|title }}

{% for skill in category.list %}
{{ skill.name }}
{{ skill.proficiency }}%
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}