forked from mprat/practicepython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
49 lines (41 loc) · 1.64 KB
/
Copy pathdefault.html
File metadata and controls
49 lines (41 loc) · 1.64 KB
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
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=0.8">
<meta name="author" content="Michele Pratusevich, michele.pratusevich@gmail.com">
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/main.css">
<link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/favicon.png">
{% if page.bokeh %}
<link rel="stylesheet" href="https://cdn.pydata.org/bokeh/release/bokeh-0.12.4.min.css" type="text/css" />
<script type="text/javascript" src="https://cdn.pydata.org/bokeh/release/bokeh-0.12.4.min.js"></script>
{% endif %}
</head>
<body>
<noscript id="deferred-styles">
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/syntax.css">
</noscript>
{% include header.html %}
<script>
var loadDeferredStyles = function() {
var addStylesNode = document.getElementById("deferred-styles");
var replacement = document.createElement("div");
replacement.innerHTML = addStylesNode.textContent;
document.body.appendChild(replacement)
addStylesNode.parentElement.removeChild(addStylesNode);
};
var raf = requestAnimationFrame || mozRequestAnimationFrame ||
webkitRequestAnimationFrame || msRequestAnimationFrame;
if (raf) raf(function() { window.setTimeout(loadDeferredStyles, 0); });
else window.addEventListener('load', loadDeferredStyles);
</script>
<div class="boxframe center">
{% if page.date %}
<h4 class="textright">{{ page.date | date_to_long_string}}</h4>
{% endif %}
{{ content }}
</div>
{% include footer.html %}
</body>
</html>