{% extends "cv/base.html" %}
{% block body_id %}menu{% endblock body_id %}
{% block content %}
{% if has_about_section %}
{{ translations.cv_menu.about }}
{% endif %}
{% if has_experience_section %}
{{ translations.cv_menu.experiences }}
{% endif %}
{% if has_education_section %}
{{ translations.cv_menu.education }}
{% endif %}
{% if has_skills_section %}
{{ translations.cv_menu.skills }}
{% endif %}
{% if has_courses_section %}
{{ translations.cv_menu.courses }}
{% endif %}
{% if has_contact_section %}
{{ translations.cv_menu.contact }}
{% endif %}
{% endblock content %}