{% extends 'base.html.twig' %} {% block breadcrumb %} {% endblock %} {% block page_title %}{{ 'title.projects'|trans }}{% endblock %} {% block page_content %} {% if is_granted('IS_AUTHENTICATED_FULLY') %}
{% endif %} {% if projects is not empty %}
{% for project in projects %}

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

{% include 'partials/_project-metadata.html.twig' %}

{% if project.description %}

{{ project.description|markdown_to_html }}

{% endif %} {{ 'button.details'|trans }}
{% endfor %}
{% else %} {% if not is_granted('IS_AUTHENTICATED_FULLY') %}

{{ 'text.login_to_create_project'|trans }}

{% endif %} {% endif %} {% endblock %}