server actix for 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
1008 B

3 years ago
  1. <!DOCTYPE html>
  2. <html lang="{{ lang }}">
  3. <head>
  4. {% block head %}
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="description" content="{{ "meta_description"|translate(lang) }}" />
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <link rel="icon" type=image/svg+xml href="/assets/img/Logo.svg">
  11. <link rel="stylesheet" href="/assets/css/base.css" />
  12. <link rel="stylesheet" href="/assets/css/nav.css" />
  13. <title>Cannabinieri</title>
  14. {% endblock %}
  15. </head>
  16. <body>
  17. <div id="nav">
  18. {% include "nav.html" %}
  19. </div>
  20. <div id="content">
  21. {% block content %}{% endblock %}
  22. </div>
  23. <div id="footer">
  24. {% include "footer.html" %}
  25. </div>
  26. </body>
  27. </html>