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.

31 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <!DOCTYPE html>
  2. <html lang="{{ lang }}" xmlns:xlink="http://www.w3.org/1999/xlink">
  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="shortcut icon" href="#">
  12. <link rel="stylesheet" href="/assets/css/base.css" />
  13. <link rel="stylesheet" href="/assets/css/nav.css" />
  14. <link rel="stylesheet" href="/assets/css/footer.css" />
  15. <link rel="stylesheet" href="/assets/css/net.css"/>
  16. <title>Cannabinieri</title>
  17. {% endblock %}
  18. </head>
  19. <body>
  20. <div class="wrapper">
  21. <div id="nav">
  22. {% include "nav.html" %}
  23. </div>
  24. <div id="content">
  25. {% block content %}{% endblock %}
  26. </div>
  27. <div id="footer">
  28. {% include "footer.html" %}
  29. </div>
  30. </div>
  31. </body>
  32. </html>