forked from cms-dev/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
24 lines (20 loc) · 1.04 KB
/
base.html
File metadata and controls
24 lines (20 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="{{ translation.identifier }}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{% endblock title %}</title>
<link rel="shortcut icon" href="{{ static_url("static", "favicon.ico") }}" />
<link rel="stylesheet" href="{{ static_url("static", "css", "bootstrap.css") }}">
<link rel="stylesheet" href="{{ static_url("static", "cws_style.css") }}">
<script src="{{ static_url("static", "jq", "jquery-3.6.0.min.js") }}"></script>
{# For compatibility with Bootstrap 2.x #}
<script src="{{ static_url("static", "jq", "jquery-migrate-3.3.2.min.js") }}"></script>
<script src="{{ static_url("static", "js", "bootstrap.js") }}"></script>
<script src="{{ static_url("static", "cws_utils.js") }}"></script>
{% block js %}{% endblock js %}
</head>
<body>
{% block body %}{% endblock body %}
</body>
</html>