-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
executable file
·44 lines (44 loc) · 2 KB
/
default.html
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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
<link rel="canonical" href="{{ site.baseurl }}{{ page.url }}">
<link rel="apple-touch-icon" href="{{ site.baseurl }}/apple-touch-icon.png">
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
<script src="{{ site.baseurl }}/scripts/modernizr.custom.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header role="banner" class="page-header" id="top">
<h1>{{site.title}}</h1>
<p>{{site.tagline}}</p>
<nav role="navigation">
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="toggle-label"><span>menu</span></label>
<ul class="menu">
<li><a href="{{site.baseurl}}/index.html" title="Articles">Blog</a></li>
<li><a href="{{site.baseurl}}/about.html" title="learn more">About</a></li>
<li><a href="{{site.baseurl}}/resources.html" title="resources">Resources</a></li>
<li><a href="{{site.baseurl}}/tags/" title="Archive">Archive</a></li>
</ul>
</nav>
</header>
{{content}}
{% if page.id %}
{% include footer-post.html %}
{% else %}
{% include footer.html %}
{% endif %}
</body>
</html>