templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <title>{% block title %}Flash Énergie{% endblock %}</title>
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <link rel="shortcut icon" href="/assets/media/logos/favicon.ico" />
  8. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700" />
  9. <link href="/assets/plugins/custom/fullcalendar/fullcalendar.bundle.css" rel="stylesheet" type="text/css" />
  10. <link href="/assets/plugins/custom/datatables/datatables.bundle.css" rel="stylesheet" type="text/css" />
  11. <link href="/assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" />
  12. <link href="/assets/css/style.bundle.css" rel="stylesheet" type="text/css" />
  13. {% block stylesheets %}{% endblock %}
  14. </head>
  15. <body id="kt_body" class="bg-body">
  16. <div class="d-flex flex-column flex-root">
  17. {% block body %}{% endblock %}
  18. </div>
  19. <script>var hostUrl = "/assets/";</script>
  20. <script src="/assets/plugins/global/plugins.bundle.js"></script>
  21. <script src="/assets/js/scripts.bundle.js"></script>
  22. <script src="/assets/plugins/custom/fullcalendar/fullcalendar.bundle.js"></script>
  23. <script src="/assets/plugins/custom/datatables/datatables.bundle.js"></script>
  24. <script src="/assets/js/widgets.bundle.js"></script>
  25. <script src="/assets/js/custom/widgets.js"></script>
  26. <script src="/assets/js/custom/apps/chat/chat.js"></script>
  27. <script src="/assets/js/custom/utilities/modals/create-campaign.js"></script>
  28. <script src="/assets/js/custom/utilities/modals/users-search.js"></script>
  29. {% block javascripts %}{% endblock %}
  30. </body>
  31. </html>