templates/api/blocks/experience-map-preview.html.twig line 1

Open in your IDE?
  1. <div class="experience-card">
  2.     <div class="preview-content">
  3.         <a href="{{ sulu_content_path(routePath) }}" class="cblue nodeco" target="_blank">
  4.             <div class="fw500 fs20 preview-h3 lh28 mt-8px">{{ title }}</div>
  5.         </a>
  6.         {% if article is defined and article.content is defined and article.content.short_desc is defined and article.content.short_desc is not empty %}
  7.             <div class="lh20 mt0p5em">{{ article.content.short_desc|raw }}</div>
  8.         {% endif %}
  9.         <div class="dflex jcfe mt0p5em">
  10.             <a href="{{ sulu_content_path(routePath) }}" class="see-more" target="_blank">Voir plus</a>
  11.         </div>
  12.     </div>
  13. </div>