Spaces:
Sleeping
Sleeping
Update templates/base.html
Browse files- templates/base.html +19 -20
templates/base.html
CHANGED
|
@@ -1,20 +1,19 @@
|
|
| 1 |
-
<!doctype html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Agrovision - Future of Farming</title>
|
| 7 |
-
<link rel="stylesheet" href="/static/styles.css">
|
| 8 |
-
<script src="/_sdk/element_sdk.js"></script>
|
| 9 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
-
<script src="https://cdn.jsdelivr.net/npm/qrcode@1.5.3/build/qrcode.min.js"></script>
|
| 11 |
-
</head>
|
| 12 |
-
<body class="bg-gray-50">
|
| 13 |
-
{% include 'components/dark_toggle.html' %}
|
| 14 |
-
{% include 'components/
|
| 15 |
-
{%
|
| 16 |
-
|
| 17 |
-
<script src="/static/
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
</html>
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Agrovision - Future of Farming</title>
|
| 7 |
+
<link rel="stylesheet" href="/static/styles.css">
|
| 8 |
+
<script src="/_sdk/element_sdk.js"></script>
|
| 9 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/qrcode@1.5.3/build/qrcode.min.js"></script>
|
| 11 |
+
</head>
|
| 12 |
+
<body class="bg-gray-50">
|
| 13 |
+
{% include 'components/dark_toggle.html' %}
|
| 14 |
+
{% include 'components/header.html' %}
|
| 15 |
+
{% block content %}{% endblock %}
|
| 16 |
+
<script src="/static/translations.js"></script>
|
| 17 |
+
<script type="module" src="/static/js/main.js"></script>
|
| 18 |
+
</body>
|
| 19 |
+
</html>
|
|
|