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

29 lines
699 B
HTML
Raw Normal View History

2023-04-30 14:08:32 +03:00
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
2023-05-22 11:25:46 +03:00
<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 %}
2023-04-30 14:08:32 +03:00
</head>
<body id="index" class="home">
2023-05-22 11:25:46 +03:00
{% block content %}
{% endblock %}
2023-04-30 14:08:32 +03:00
2023-05-22 11:25:46 +03:00
{% if DESCRIPTION %}
<footer id="contentinfo" class="body">
<hr>
{{ DESCRIPTION }}
</footer>
{% endif %}
2023-04-30 14:08:32 +03:00
</body>
2023-05-22 10:06:52 +03:00
{% block scripts %}
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-05-22 10:06:52 +03:00
{% endblock %}
2023-04-30 14:08:32 +03:00
</html>