forked from github-tools/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
34 lines (32 loc) · 1.35 KB
/
default.html
File metadata and controls
34 lines (32 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="{{ site.description }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<title>{{ site.title }}</title>
<!-- CDN asssets -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,400,400italic,700,700italic">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/milligram/1.1.0/milligram.min.css">
<link rel="stylesheet" href="{{site.baseurl}}/css/main.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="header">
<div class="container centered">
<h1><a href="{{site.baseurl}}">GitHub.js</a></h1>
</div>
</div>
<div class="container" style="min-height: 70vh;">
{{ content }}
</div>
<div class="footer centered">
© 2013 - {{site.time | date: "%Y"}},
Michael Aufreiter (<a href="//substance.io">Development Seed</a>) and
<a href="//github.com/yahoo">Yahoo Inc</a>.
</div>
{% include scripts.html %}
</body>
</html>