nfc-web/web/nfc-theme/templates/base.html
2023-05-22 01:00:30 +03:00

27 lines
925 B
HTML

<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
{% block head %}
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="{{ SITEURL }}/theme/local.css" rel="stylesheet">
{% endblock head %}
</head>
<body id="index" class="home">
{% block content %}
{% endblock %}
{% if DESCRIPTION %}
<footer id="contentinfo" class="body">
<hr>
{{ DESCRIPTION }}
</footer>
{% endif %}
</body>
<script src="{{ SITEURL }}/theme/platform.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@3.0.5/dist/js.cookie.min.js" integrity="sha256-WCzAhd2P6gRJF9Hv3oOOd+hFJi/QJbv+Azn4CGB8gfY=" crossorigin="anonymous"></script>
<script src="{{ SITEURL }}/theme/geo.js"></script>
</html>