{% extends "resumes/base.html" %} {% load base_filters %} {% load base_tags %} {% load category_tags %} {% load resume_tags %} {% load tagging_tags %} {% block title %}{{ resume.get_title }}{% endblock %} {% block meta_description %}{{ resume.get_description }}{% endblock %} {% block meta_keywords %}{{ resume.get_keywords }}{% endblock %} {% block meta_canonical_url %}{% endblock %} {% block content %}
{% if resume.first_name or resume.last_name or resume.contact_phone or resume.contact_phone2 or resume.contact_fax or resume.contact_email %}

{% trans "Contact Information" %}

  • {% if resume.first_name or resume.last_name %} {{ resume.first_name }} {{ resume.last_name }}
    {% endif %} {% if resume.contact_phone %} {{ resume.contact_phone|phonenumber }}
    {% endif %} {% if resume.contact_phone2 %} {{ resume.contact_phone2|phonenumber }}
    {% endif %} {% if resume.contact_fax %} {{ resume.contact_fax }}
    {% endif %} {% if resume.contact_email %} {{ resume.contact_email|obfuscate_email }} {% endif %}
{% endif %} {% if resume.description %}

{% trans "Description" %}

{{ resume.description|safe }}
{% endif %} {% if resume.industry %}

{% trans "Industry" %}

{{ resume.industry }}

{% endif %} {% if resume.location %}

{% trans "Location" %}

{{ resume.location }}

{% endif %} {% if resume.experience %}

{% trans "Experience" %}

{{ resume.experience|safe|linebreaks }}
{% endif %} {% if resume.awards %}

{% trans "Awards and Certifications" %}

{{ resume.awards|safe|linebreaks }}
{% endif %} {% if resume.skills %}

{% trans "Skills" %}

{{ resume.skills|safe|linebreaks }}
{% endif %} {% if resume.education %}

{% trans "Education" %}

{{ resume.education|safe|linebreaks }}
{% endif %}
{% include "resumes/meta.html" %}
{% endblock %}