{% extends 'front/base.html.twig' %} {% block title %} {{ visual.name }} {% endblock %} {% block body %}
{# #}

{{ visual.name }}

{% include '@Library/front/_btn_favorite.html.twig' %}
{#
#}
{{ include('common/editorjs/_block.html.twig', {blocks:visual.description|cmsBlocks}) }}
    {% if visual.visualType is not empty %}
  • Type de visuel : {{ visual.visualType.name }}
  • {% endif %} {% if visual.category is not empty %}
  • Catégorie : {{ visual.category.name }}
  • {% endif %} {% if visual.complexity is not empty %}
  • Complexité : {{ visual.complexity.name }}
  • {% endif %} {% if visual.subjectOrientation is not empty %}
  • Orientation du sujet : {{ visual.subjectOrientation.name }}
  • {% endif %} {% if visual.colorDensity is not empty %}
  • Densité de couleur : {{ visual.colorDensity.name }}
  • {% endif %} {% if visual.format is not empty %}
  • Format : {{ visual.format.name }}
  • {% endif %} {% if visual.placements is not empty %}
  • Idée de placement :
      {% for placement in visual.placements %}
    • {{ placement.name }}
    • {% endfor %}
  • {% endif %} {% if visual.tags is not empty %}
  • Mots clés :
      {% for tag in visual.tags %}
    • {{ tag.name }}
    • {% endfor %}
  • {% endif %} {% if visual.colors is not empty %}
  • Couleurs :
      {% for color in visual.colors %}
    • {{ color.name }}
    • {% endfor %}
  • {% endif %} {% if visual.moods is not empty %}
  • Ambiance :
      {% for mood in visual.moods %}
    • {{ mood.name }}
    • {% endfor %}
  • {% endif %} {% if visual.styles is not empty %}
  • Esprits :
      {% for style in visual.styles %}
    • {{ style.name }}
    • {% endfor %}
  • {% endif %} {% if visual.graphicStyles is not empty %}
  • Style graphique :
      {% for graphicStyle in visual.graphicStyles %}
    • {{ graphicStyle.name }}
    • {% endfor %}
  • {% endif %} {% if visual.themes is not empty %}
  • Thématiques :
      {% for theme in visual.themes %}
    • {{ theme.name }}
    • {% endfor %}
  • {% endif %}
{% endblock %}