-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbase.html
More file actions
45 lines (40 loc) · 1.49 KB
/
base.html
File metadata and controls
45 lines (40 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
{% if post %}
{{ post.title }}
{% else %}
cosmic_python
{% endif %}
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Harry Percival and Bob Gregory">
<meta name="description" content="">
<meta property="og:title" content="cosmic_python" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.cosmicpython.com{% block url_path %}{% endblock %}" />
<meta property="og:image" content="https://www.cosmicpython.com/images/lobster_nebula.jpg" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pygments-css@1.0.0/friendly.css">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<main class="wrapper">
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="/">
<h1 class="title">Cosmic Python</h1>
</a>
</section>
</nav>
<section class="container">
{% block content_block %}
{% endblock %}
</section>
</main>
</body>
</html>