-
Notifications
You must be signed in to change notification settings - Fork 633
/
Copy pathbase.html
24 lines (24 loc) · 839 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block meta_header %}{% endblock %}
<title>{% block title %}{% endblock %}Full Stack Python</title> {% block css %}{% endblock %}
<link rel="shortcut icon" href="/img/fsp-fav.png">
</head>
<body>
{% block banner %}{% endblock %}
{% include "banner.html" %}
<div class="cn">
{% include "nav.html" %}
{% block forkme %}{% endblock %}
{% block content %}{% endblock %}
<hr></div>
{% block lower_banner %}{% endblock %}
<div class="cn"><div class="ft sns"><a href="/about-author.html">Matt Makai</a> <a href="/change-log.html">2012-2022</a></div></div>
{% block bottom_banner %}{% endblock %}
{% block js %}{% endblock %}
</body>
</html>