cannabinieri_web_actix/templates/base.html

32 lines
1.3 KiB
HTML
Raw Normal View History

2021-10-21 20:07:40 +02:00
<!DOCTYPE html>
2021-11-07 00:54:42 +01:00
<html lang="{{ lang }}" xmlns:xlink="http://www.w3.org/1999/xlink">
2021-10-21 20:07:40 +02:00
<head>
{% block head %}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ "meta_description"|translate(lang) }}" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type=image/svg+xml href="/assets/img/Logo.svg">
2021-10-28 20:33:35 +02:00
<link rel="shortcut icon" href="#">
2021-10-21 20:07:40 +02:00
<link rel="stylesheet" href="/assets/css/base.css" />
<link rel="stylesheet" href="/assets/css/nav.css" />
2021-10-28 20:33:35 +02:00
<link rel="stylesheet" href="/assets/css/footer.css" />
2021-12-12 14:35:06 +01:00
<link rel="stylesheet" href="/assets/css/nojs_net.css" />
2021-10-21 20:07:40 +02:00
<title>Cannabinieri</title>
{% endblock %}
</head>
<body>
2021-10-28 20:33:35 +02:00
<div class="wrapper">
<div id="nav">
{% include "nav.html" %}
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
<div id="footer">
{% include "footer.html" %}
</div>
2021-10-21 20:07:40 +02:00
</div>
</body>
</html>