-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
25 lines (24 loc) · 730 Bytes
/
base.html
File metadata and controls
25 lines (24 loc) · 730 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
<html>
<head>
{%- if page_title %}
<title>{{ page_title }}</title>
{%- endif %}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link href="{{ base_url }}/assets/css/main.css" rel="stylesheet">
<!-- search on every page
<script>var base_url = '{{ base_url }}';</script>
<script data-main="{{ base_url }}/mkdocs/js/search.js" src="{{ base_url }}/mkdocs/js/require.js"></script>
end search on every page -->
</head>
<body>
<!-- HEADER -->
{% include "header.html" %}
<!-- END HEADER -->
<!-- CONTENT -->
{% include "content.html" %}
<!-- END CONTENT -->
<!-- FOOTER -->
{% include "footer.html" %}
<!-- END FOOTER -->
</body>
</html>