{% extends 'base.html.twig' %} {% block breadcrumb %} {% endblock %} {% block page_title %}Projets{% endblock %} {% block page_content %}
Créer un projet
{% if projects is not empty %}
{% for project in projects %}

{{ project.name }} {% for tag in project.tags %} {{ tag.name }} {% endfor %}

{% if project.description %}

{{ project.description|markdown_to_html }}

{% endif %} Voir
{% endfor %}
{% endif %} {% endblock %}