{% extends "base.html" %} {% load static %} {% block title %}{{ config.seo.site_title }}{% endblock %} {% block content %}
{% if config.profile.available %}
{{ config.profile.available_label }}
{% endif %}

{{ config.hero.greeting }} {{ config.profile.first_name }}

{{ config.profile.subtitle }}

{% for stat in config.about.stats %}
{{ stat.value }} {{ stat.label }}
{% if not forloop.last %}
{% endif %} {% endfor %}
{{ config.hero.code_window.filename }}
class {{ config.profile.first_name }}:
    def __init__(self):
        self.role = "{{ config.profile.title }}"{% for group in config.skills.groups %}
        self.{{ group.key }} = [{% for item in group.items|slice:":4" %}"{{ item }}"{% if not forloop.last %}, {% endif %}{% endfor %}{% if group.items|length > 4 %}, ...{% endif %}]{% endfor %}
        self.email = "{{ config.profile.email }}"

{{ config.skills.section_title }}

{{ config.skills.section_subtitle }}

{% for group in config.skills.groups %}

{{ group.label }}

{% for item in group.items %}
{{ item }}
{% endfor %}
{% endfor %}
{% if config.experience.items %}

{{ config.experience.section_title }}

{{ config.experience.section_subtitle }}

{% for exp in config.experience.items %}

{{ exp.company }}

{{ exp.role }}

{{ exp.period }}

{{ exp.description }}

{% for tag in exp.tags %} {{ tag }} {% endfor %}
{% endfor %}
{% endif %}

Projets sélectionnés

Mes projets les plus représentatifs

{% for project in featured_projects %}
{% if project.images %} {{ project.title }} {% else %}
{% endif %}
{{ project.category }}

{{ project.title }}

{{ project.short_description }}

{% for tech in project.technologies|slice:":4" %} {{ tech }} {% endfor %} {% if project.technologies|length > 4 %} +{{ project.technologies|length|add:"-4" }} {% endif %}
Voir le projet
{% empty %}

Aucun projet disponible. Ajoutez vos projets dans data/projects.json.

{% endfor %}
{% if total_projects > 3 %} {% endif %}

{{ config.contact.section_title }}

{{ config.contact.section_subtitle }}

{% for item in config.contact.items %}
{{ item.icon }}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% endblock %}