edlp-home--mobile.html.twig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <div class="grid">
  2. {% if nodes_prods %}
  3. {% for node in nodes_prods %}
  4. <div class="col small-col-12 med-col-4 large-col-{{ node.cols }}">
  5. <div class="wrapper">
  6. {{ node.build }}
  7. </div>
  8. </div>
  9. {% endfor %}
  10. {% endif %}
  11. {% if nodes_statics %}
  12. {% for node in nodes_statics %}
  13. <div class="col small-col-12 med-col-4 large-col-{{ node.cols }}">
  14. <div class="wrapper">
  15. {{ node.build }}
  16. </div>
  17. </div>
  18. {% endfor %}
  19. {% endif %}
  20. {% if lastdocs %}
  21. <div class="lastdocs-home col small-col-12 med-col-4 large-col-2">
  22. <div class="wrapper">
  23. {{ lastdocs }}
  24. </div>
  25. </div>
  26. {% endif %}
  27. {% if agenda %}
  28. <div class="agenda col small-col-12 med-col-4 large-col-2">
  29. <div class="wrapper">
  30. {{ agenda }}
  31. </div>
  32. </div>
  33. {% endif %}
  34. {% if collection_link_rendered %}
  35. <div class="collection-link col small-col-12 med-col-4 large-col-3">
  36. <div class="wrapper">
  37. {{ collection_link_rendered }}
  38. </div>
  39. </div>
  40. {% endif %}
  41. {% if production_link_rendered %}
  42. <div class="production-link col small-col-12 med-col-4 large-col-3">
  43. <div class="wrapper">
  44. {{ production_link_rendered }}
  45. </div>
  46. </div>
  47. {% endif %}
  48. {% if agenda_link_rendered %}
  49. <div class="agenda-link col small-col-12 med-col-4 large-col-3">
  50. <div class="wrapper">
  51. {{ agenda_link_rendered }}
  52. </div>
  53. </div>
  54. {% endif %}
  55. </div>