Skip to content
This repository was archived by the owner on Mar 10, 2024. It is now read-only.

Commit fd7a609

Browse files
Create legal-base.html
Base template for legal pages not including consent request.
1 parent 7d0aa54 commit fd7a609

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

src/templates/legal-base.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>{% block title %}CodeWe{% endblock %}</title>
6+
<link rel="stylesheet/less" type="text/css" href="{{ url_for('static', filename = 'css/base.less') }}">
7+
<link rel="icon" type="image/svg+xml" href="{{ url_for('static', filename = 'img/SVG/Small.svg') }}">
8+
<link rel="alternate icon" type="image/png" href="{{ url_for('static', filename = 'img/PNG/Small.png') }}">
9+
{% block head %}{% endblock %}
10+
</head>
11+
<script src="//cdn.jsdelivr.net/npm/less" ></script>
12+
<body>
13+
<div id="main">
14+
<header id="header">
15+
{% block header %}{% include 'header.html' %}{% endblock %}
16+
</header>
17+
18+
<div id="body">
19+
{% block corps %}{% endblock %}
20+
</div>
21+
22+
<footer id="footer">
23+
{% block footer %}{% include 'footer.html' %}{% endblock %}
24+
</footer>
25+
</div>
26+
</body>
27+
{% block scripts %}{% endblock %}
28+
</html>

0 commit comments

Comments
 (0)