{% extends "resumes/base.html" %} {% load resume_tags %} {% load tagging_tags %} {% load base_tags %} {% load base_filters %} {% load category_tags %} {% load i18n %} {% 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 extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% resume_nav request.user resume %}

{{ resume.title }}

{% if resume.resume_url %} {% endif %} {% if resume.resume_file %} {% endif %} {% if resume.description %}
{% trans "Description" %}
{{ resume.description|safe }}
{% endif %} {% if resume.location %}
{% trans "Location" %}
{{ resume.location }}
{% endif %} {% if resume.experience %}
{% trans "Experience" %}
{{ resume.experience|safe|linebreaks }}
{% endif %} {% if resume.skills %}
{% trans "Skills" %}
{{ resume.skills|safe|linebreaks }}
{% endif %} {% if resume.education %}
{% trans "Education" %}
{{ resume.education|safe|linebreaks }}
{% endif %}

Contact Information

{% if resume.contact_name %}
{{ resume.contact_name }}
{{ resume.contact_phone|phonenumber }}
{{ resume.contact_phone2|phonenumber }}
{{ resume.contact_fax }}
{{ resume.contact_email|obfuscate_email }}
{% endif %} {% include "resumes/meta.html" %} {% url resume resume.pk as the_url %}

{% fb_like_button_iframe the_url %}

{% csrf_token %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}