templates/api/blocks/api_search_render.html.twig line 1

Open in your IDE?
  1. {% set article = sulu_content_load(id) %}
  2. {% if article.author is defined and article.author is not empty and 
  3.     article.author.contact is defined and article.author.contact is not empty %}
  4.     {% set author = sulu_resolve_user(article.author).contact.fullName %}
  5. {% endif %}
  6. {% if article.content is defined and article.content is not empty %}
  7.     {% set articleContent = article.content %}
  8. {% endif %}
  9. {% if article.extension.excerpt.categories is defined and article.extension.excerpt.categories is not empty %}
  10.     {% set categories = article.extension.excerpt.categories %}
  11. {% endif %}
  12. {% if articleContent.chapo is defined and articleContent.chapo is not empty %}
  13.     {% set chapo = articleContent.chapo %}
  14. {% endif %}
  15. {% if articleContent.routePath is defined and articleContent.routePath is not empty %}
  16.     {% set routePath = articleContent.routePath %}
  17. {% endif %}
  18. {% if articleContent.title is defined and articleContent.title is not empty %}
  19.     {% set title = articleContent.title %}
  20. {% endif %}
  21. {% if articleContent.front_title is defined and articleContent.front_title is not empty %}
  22.     {% set title = articleContent.front_title %}
  23. {% endif %}
  24. {% if gt_first is defined and gt_first is not empty and article.template is defined and article.template is not empty and article.template == "groupe-travail" %}
  25.     {% set introGtEnable = "team-project-section" %}
  26. {% else %}
  27.     {% set introGtEnable = "" %}
  28. {% endif %}
  29. {% if article.template is defined and article.template is not empty %}
  30.     <div class="preview-container {{ article.template }} br8 dflex fdc {{ introGtEnable }}" 
  31.     {% if article.content is defined and article.content.title is defined %}
  32.       data-title="{{article.content.title}}"
  33.     {% endif %}
  34.   >
  35.         {% if article.template == "articles" or article.template == "analyses" or article.template == "guides_outils" %}
  36.             {% include "api/blocks/articles-preview-content.html.twig" %}
  37.         {% elseif article.template == "agenda" %}
  38.             {% include "api/blocks/agenda-preview-content.html.twig" %}
  39.         {% elseif article.template == "newsletters" %}
  40.             {% include "api/blocks/newsletters-preview-content.html.twig" %}
  41.         {% elseif article.template == "offres" %}
  42.             {% include "api/blocks/offres-preview-content.html.twig" %}
  43.         {% elseif article.template == "aapami" %}
  44.             {% include "api/blocks/aapami-preview-content.html.twig" %}
  45.         {% elseif article.template == "fiches_territoires" %}
  46.             {% include "api/blocks/territoire-preview-content.html.twig" %}
  47.         {% elseif article.template == "experiences" %}
  48.             {% include "api/blocks/experience-map-preview.html.twig" %}
  49.         {% elseif article.template == "groupe-travail" %}
  50.             {% include "api/blocks/groupe-travail-preview-content.html.twig" %}
  51.         {% endif %}
  52.     </div>
  53. {% endif %}