nfc-web/web/nfc-theme/templates/base.html

27 lines
746 B
HTML
Raw Normal View History

2023-04-30 14:08:32 +03:00
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
2023-05-03 00:21:33 +03:00
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
2023-04-30 14:08:32 +03:00
{% 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>
2023-05-01 21:58:23 +03:00
<script src="{{ SITEURL }}/theme/platform.js"></script>
2023-05-21 16:20:13 +03:00
<script src="{{ SITEURL }}/theme/geo.js"></script>
2023-04-30 14:08:32 +03:00
</html>