-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbase.html
35 lines (24 loc) · 906 Bytes
/
base.html
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
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Blog Home</title>
<!-- Bootstrap core CSS -->
<link href="{% static 'blog/vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="{% static 'blog/css/style.css' %}" rel="stylesheet">
</head>
<body>
{% include 'partials/_navbar.html' %}
{% block content %}
{% endblock content %}
{% include 'partials/_footer.html' %}
<!-- Bootstrap core JavaScript -->
<script src="{% static 'blog/vendor/jquery/jquery.min.js' %}"></script>
<script src="{% static 'blog/vendor/bootstrap/js/bootstrap.bundle.min.js' %}"></script>
</body>
</html>