-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.html
110 lines (106 loc) · 5.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="ICBM" content="52.213, 0.105" />
<meta name="description" content="{{ page.description }}" />
<meta name="keywords" content="{% if page.categories %}{{ page.categories | array_to_sentence_string }}{% else %}jnrowe{% endif %}" />
<title>{% if page.title %}{{ page.title }} − {% endif %}JNRowe</title>
<link rel="stylesheet" href="/css/content.css" />
<link rel="stylesheet" href="/css/design.css" />
<link rel="stylesheet" href="/css/pygments.css" />
<link rel="stylesheet" href="/css/microformats.css" />
<link rel="stylesheet" href="/css/print.css" media="print" />
<link rel="stylesheet" href="/css/voice.css" media="speech" />
{% if page.css %}
{% for css in page.css %}
<link rel="stylesheet" href="/css/{{ css }}.css" />
{% endfor %}
{% endif %}
<!--[if lte IE 8]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" />
<![endif]-->
<link rel="transformation" href="/static/extract-metadata.xsl" />
<link rel="meta" type="application/rdf+xml" title="FOAF" href="/static/foaf.rdf" />
<link rel="alternate" type="application/atom+xml" title="Updated items" href="/updates.atom" />
<link rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/" />
<link rel="openid.server" href="http://openid.claimid.com/server" />
<link rel="openid.delegate" href="http://openid.claimid.com/jnrowe" />
<link rel="shortcut icon" href="/static/icon.png" type="image/png" />
<link rel="author" title="About these documents" href="/about.html" />
<link rel="pavatar" href="http://jnrowe.github.com/static/pavatar.png" />
<link rel="index" title="Index" href="/index.html" />
<link rel="search" title="Search" href="/search.html" />
<link rel="contents" title="Full journal listings" href="/contents.html" />
<link rel="copyright" title="Copyright" href="/copyright.html" />
<link rel="top" title="JNRowe" href="/index.html" />
{% if page.next %}
<link rel="next" title="{{ page.next.title }}" href="{{ page.next.url }}" />
{% endif %}
{% if page.previous %}
<link rel="prev" title="{{ prev.previous.title }}" href="{{ page.previous.url }}" />
{% endif %}
<link rel="home" title="Home page" href="/index.html" />
<link rel="help" title="Accessibility" href="/accessibility.html" />
<link rel="glossary" title="Site glossary" href="/glossary.html" />
<link rel="made" title="Author's email address" href="mailto:[email protected]" />
<link rel="me" href="/index.html" />
{% if page.js %}
{% for js in page.js %}
<script src="/js/{{ js }}.js" />
{% endfor %}
{% endif %}
</head>
<body id="jnrowe-github-com">
<div id="corewrapper">
<a href="http://github.com/JNRowe/jnrowe.github.com">
<img class="github-ribbon" alt="Fork me on GitHub"
src="http://s3.amazonaws.com/github/ribbons/forkme_left_orange_ff7600.png" />
</a>
<div id="content" class="hfeed">
<header>
<h1 class="masthead">
<a href="/index.html" rel="home author me" accesskey="1">
{% if page.main_header %}{{ page.main_header }}{% else%}JNRowe{% endif %}
</a>
</h1>
</header>
<nav>
<ul class="skipvisual">
<li>
<a href="#content" accesskey="2">
Skip navigation section
</a>
</li>
<li>
<a href="/accessibility.html" title="Accessibility statement"
accesskey="0">Accessibility statement</a>
</li>
</ul>
</nav>
{{ content }}
</div>
</div>
{% if site.disqus %}
{% unless page.no-disqus %}
<script>
//<![CDATA[
(function() {
var links = document.getElementsByTagName('a');
var query = '?';
for(var i = 0; i < links.length; i++) {
if(links[i].href.indexOf('#disqus_thread') >= 0) {
query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
}
}
document.write('<script charset="utf-8" src="http://disqus.com/forums/jnrowe/get_num_replies.js' + query + '" />');
})();
//]]>
</script>
{% endunless %}
{% endif %}
</body>
</html>
{% comment %}
<!-- vim: set ft=liquid sw=4 sts=4 et tw=80 fileencoding=utf-8: -->
{% endcomment %}