-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbase.html
More file actions
39 lines (30 loc) · 962 Bytes
/
base.html
File metadata and controls
39 lines (30 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://www.owencampbell.me.uk/images/favicon/favicon.ico" rel="icon">
<title>SQL for Python Programmers</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<link href="https://www.owencampbell.me.uk/theme/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="{{root}}static/styles.css">
{% block head %}
{% endblock %}
</head>
<body>
<div class="fixed-top">
{% block navbars %}
{% include "partials/header.html" %}
{% endblock %}
</div>
<main role="main" class="container">
{% block body %}
{% endblock %}
</main>
{% block footer %}
<footer class="footer d-none d-md-block">
{% include "partials/footer.html" %}
</footer>
{% endblock %}
</body>
</html>