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.6 KiB

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