cannabinieri website
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.

26 lines
1.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. {% block head %}
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <link rel="stylesheet" type="text/css" href="css/base.css">
  9. <link rel="stylesheet" type="text/css" href="css/navigation.css" />
  10. <link rel="stylesheet" type="text/css" href="css/footer.css" />
  11. <link rel="icon" type=image/svg+xml href="../img/Logo.svg">
  12. <title>{% block title %}Base{% endblock title %} </title>
  13. {% endblock head %}
  14. </head>
  15. <body>
  16. <div class= "navigation">
  17. {%include "nav"%}
  18. </div>
  19. <div class= "content">
  20. {% block content %} {% endblock content %}
  21. </div>
  22. <div class= "footer">
  23. {%include "footer"%}
  24. </div>
  25. <script type="text/javascript" src="js/main.js"></script>
  26. </body>
  27. </html>