introduction_section.html.twig 984 B

1234567891011121314151617181920212223242526
  1. {% autoescape false %}
  2. {% if intro is not empty %}
  3. <section id="section-intro" class="section-intro">
  4. <div class="toolbar">
  5. <div class="btn-group btn-group-sm" role="group" aria-label="">
  6. {% for item in toolbar %}
  7. <a href="{{ item.url }}"
  8. title="{{ item.name }}" class="btn btn-light {{ item.class }}">
  9. <i class="{{ item.icon }}"></i>
  10. </a>
  11. {% endfor %}
  12. </div>
  13. </div>
  14. {% if intro.text !='' %}
  15. <div id="{{ intro.name }}" class="content">
  16. {{ intro.text }}
  17. </div>
  18. {% else %}
  19. <div class="help">
  20. <h1>{{ intro.name }}</h1>
  21. <p>{{ intro.help }}</p>
  22. </div>
  23. {% endif %}
  24. </section>
  25. {% endif %}
  26. {% endautoescape %}