-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
64 lines (49 loc) · 1.92 KB
/
Copy pathdefault.html
File metadata and controls
64 lines (49 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<!-- CloudFront backup -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/normalize.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/styles.css?{{ site.time | date: "%Y%m%j%H%M%S" }}">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/syntax.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,300,700|Open+Sans:300,400,600,700" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="{{ site.baseurl }}/assets/js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" type="image/ico" href="{{ site.baseurl }}/assets/favicon.ico" />
<link rel="canonical" href="{{ site.url }}{{ page.url }}" />
{% if page.title %}
<title>{{ page.title }}</title>
<meta property="og:title" content="{{ page.title | xml_escape }}" />
{% else %}
<title>{{ site.title }}</title>
<meta property="og:title" content="{{ site.title | xml_escape }}" />
{% endif %}
{% if page.description %}
<meta name="description" content="{{ page.description | xml_escape }}">
<meta property="og:description" content="{{ page.description | xml_escape }}" />
{% else %}
<meta name="description" content="{{ site.description | xml_escape }}">
<meta property="og:description" content="{{ site.description | xml_escape }}" />
{% endif %}
</head>
<body>
<div class="container">
<header role="banner">
<h1>
<a href="/">{{ site.name }}</a>
</h1>
</header>
<div class="wrap content">
{% include sidebar.html %}
<article id="main" class="main-content" role="main">
{{ content }}
</article>
</div>
</div>
{% include analytics.html %}
</body>
</html>