Files
edlp_d8/web/themes/custom/edlptheme/templates/content/edlp-home.html.twig
T
bachir 9da6cf9927 reinstalled all contribs with composer
need to run :
drush ev 'drupal_flush_all_caches();'
drush cr
and restart nginx and php-fpm before loading the website
2019-04-30 19:27:47 +02:00

55 lines
1.1 KiB
Twig

{#
<div class="presentation col col-4">
<div class="wrapper">
{{ presentation }}
</div>
</div>
<div class="last-file col col-2">
<div class="wrapper">
{{ last_fil }}
</div>
</div>
<div class="last-prod col col-4">
<div class="wrapper">
{{ last_production }}
</div>
</div>
#}
<div class="grid">
{% if nodes %}
{% for node in nodes %}
<div class="col small-col-12 med-col-4 large-col-{{ node.cols }}">
<div class="wrapper">
{{ node.build }}
</div>
</div>
{% endfor %}
{% endif %}
{% if lastdocs %}
<div class="lastdocs-home col small-col-12 med-col-4 large-col-2">
<div class="wrapper">
{{ lastdocs }}
</div>
</div>
{% endif %}
{% if agenda %}
<div class="agenda col small-col-12 med-col-4 large-col-2">
<div class="wrapper">
{{ agenda }}
</div>
</div>
{% endif %}
{% if collection %}
<div class="collection col small-col-12 med-col-4 large-col-3">
<div class="wrapper">
{{ collection }}
</div>
</div>
{% endif %}
</div>