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.

base.html.twig 571B

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