lenticular_cloud2/templates/skelet.html.j2

19 lines
573 B
Plaintext
Raw Normal View History

2020-05-09 18:00:07 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
2020-05-09 19:09:59 +00:00
<title>{% block title %}{% endblock %} - Lenticular Cloud</title>
2020-05-09 18:00:07 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020-05-10 14:54:53 +00:00
<link rel="stylesheet" href="/static/main.css?v={{ GIT_HASH }}" />
2020-05-09 18:00:07 +00:00
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
2020-05-10 14:54:53 +00:00
<script type="application/javascript" src="/static/main.js?v={{ GIT_HASH }}" ></script>
2020-05-09 18:00:07 +00:00
<script type="application/javascript" >
{% block script_js %}{% endblock %}
</script>
</body>
</html>