You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
681B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{% block title %}Aux Actes Citoyens{% endblock %}</title>
  6. {% block meta %}{% endblock %}
  7. <link rel="stylesheet" href="{{ asset('assets/semantic/semantic.min.css') }}">
  8. <link rel="stylesheet" href="{{ asset('assets/stylesheets/screen.css') }}">
  9. {% block stylesheets %}{% endblock %}
  10. </head>
  11. {% set current_path = app.request.get('_route') %}
  12. <body id="{{ current_path }}">
  13. {% block body %}{% endblock %}
  14. <script src="{{ asset('assets/js/jquery-3.1.1.min.js') }}"></script>
  15. <script src="{{ asset('assets/semantic/semantic.min.js') }}"></script>
  16. {% block javascripts %}{% endblock %}
  17. </body>
  18. </html>