-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdefault.html
More file actions
executable file
·30 lines (29 loc) · 1.29 KB
/
default.html
File metadata and controls
executable file
·30 lines (29 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{page.title}} | {% endif %}School for Poetic Computation</title>
{% if page.background %}<meta property="og:image" content="{{page.background}}" />{% endif %}
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700'>
<link rel="stylesheet" href="/static/css/bootstrap.min.css" >
<link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script defer src="/static/js/bootstrap.min.js"></script>
</head>
<body id="{% if page.collection %}{{page.collection}}{% else %}{{ page.title | downcase | replace: " ", "" }}{% endif %}" {% if page.toc %}data-spy="scroll" data-target="#toc"{% endif %}>
<div class="container">
<header id="header" class="page-header">
{% include nav.html %}
</header>
<section class="content">
{{content}}
</section>
<footer id="footer">
{% include footer.html %}
</footer>
</div>
</body>
</html>