templates/pages/default.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block hero %}
  3. {% include "partials/hero.html.twig" %}
  4. <style>
  5. .hero .info.d-flex.align-items-center {
  6. display: none !important;
  7. }
  8. </style>
  9. {% endblock %}
  10. {% block content %}
  11. <main id="main" style="margin-top: 160px;">
  12. <section ID="headlineAndTextBodyBlock">
  13. <div class="container" style="margin-top: 50px; margin-bottom: 10px;">
  14. <div style="display: flex; justify-content: space-between;">
  15. <div style="width: 45%;">
  16. <h1 class="headline" style="margin: 0;">{{ content.title }}</h1>
  17. </div>
  18. <div style="width: 45%;">
  19. <p class="text" style="margin: 0;">{{content.article|raw}}</p>
  20. </div>
  21. </div>
  22. </div>
  23. </section>
  24. </main>
  25. {% endblock %}