templates/property_management/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Hausverwaltung - Leistungsübersicht{% endblock %}
  3. {% block body %}
  4. {% include "Elements/nav.html.twig" %}
  5. <div class="hero page-inner overlay" style="background-image: url('{{ asset('images/hero_bg_1.jpg') }}'); height: 400px; min-height: 400px;">
  6. <div class="container">
  7. <div class="row justify-content-center align-items-center" style="height: 400px;">
  8. <div class="col-lg-9 text-center mt-5">
  9. <h1 class="heading" data-aos="fade-up">Leistungsübersicht Hausverwaltung</h1>
  10. <p class="text-white">Unser Rundum Sorglos Paket für Sie, von WEG Verwalter bis Mietverwalter bieten wir umfangreiche Leistungen.</p>
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. <div class="section">
  16. <div class="container">
  17. {% for category, subCategories in groupedServices %}
  18. <div class="row mb-5" data-aos="fade-up">
  19. <div class="col-12">
  20. <h2 class="text-primary border-bottom pb-2">{{ category }}</h2>
  21. </div>
  22. {% for subCategory, services in subCategories %}
  23. <div class="col-12 mt-4">
  24. {% if subCategory != '_none' %}
  25. <h3 class="h4 text-secondary">{{ subCategory }}</h3>
  26. {% endif %}
  27. <div class="row">
  28. <ul class="list-unstyled col-12 ms-3">
  29. {% for service in services %}
  30. <li class="mb-2">
  31. <span class="icon-check text-primary me-2"></span>
  32. {{ service.title }}
  33. {% if service.description %}
  34. <p class="text-muted small ms-4">{{ service.description|nl2br }}</p>
  35. {% endif %}
  36. </li>
  37. {% endfor %}
  38. </ul>
  39. </div>
  40. </div>
  41. {% endfor %}
  42. </div>
  43. {% endfor %}
  44. </div>
  45. </div>
  46. {% include "Elements/footer.html.twig" %}
  47. {% endblock %}