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.

36 lines
1.5 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
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/nojs_net.css" />
  16. <link rel="stylesheet" href="/assets/css/pages.css" />
  17. <link rel="stylesheet" href="/assets/css/contact.css" />
  18. <link rel="stylesheet" href="/assets/css/box.css"/>
  19. <title>{%block title%}{%endblock%} | Cyberpreneur</title>
  20. {% endblock %}
  21. </head>
  22. <body>
  23. <div class="wrapper">
  24. <div id="nav">
  25. {% include "nav.html" %}
  26. </div>
  27. <div id="content">
  28. {% block content %}{% endblock %}
  29. </div>
  30. <div id="footer">
  31. {% include "footer.html" %}
  32. </div>
  33. </div>
  34. </body>
  35. </html>