forked from TehShrike/joshduff.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (79 loc) · 3.42 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>
Noddity
</title>
<link href="http://rss.noddityaas.com/?noddityRoot=http://joshduff.com/content/&postUrlRoot=http://joshduff.com/%23!/post/&title=Josh%20Duff%20.com&author=Josh" rel="alternate" type="application/rss+xml" title="Blog" />
<meta charset="utf-8">
<meta name="fragment" content="!">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="shortcut icon" href="icon/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="icon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="icon/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="icon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="icon/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="icon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="icon/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="icon/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="icon/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="icon/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="icon/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="icon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="icon/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="icon/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-TileImage" content="icon/mstile-144x144.png">
<meta name="msapplication-square70x70logo" content="icon/mstile-70x70.png">
<meta name="msapplication-square144x144logo" content="icon/mstile-144x144.png">
<meta name="msapplication-square150x150logo" content="icon/mstile-150x150.png">
<meta name="msapplication-square310x310logo" content="icon/mstile-310x310.png">
<meta name="msapplication-wide310x150logo" content="icon/mstile-310x150.png">
</head>
<body>
<div id="sidebar"></div>
<div id="main"></div>
<script id='template-menu' type="text/ractive">
<a href="{{pathPrefix}}">
<img class="logo" src="{{logo}}" />
</a>
<div>
<h3>Posts</h3>
<ol>
{{#postList}}
<li><a href="{{pathPrefix}}{{pagePathPrefix}}{{filename}}">{{title}}</a></li>
{{/postList}}
</ol>
</div>
</script>
<script id="template-main" type="text/ractive">
{{#editLink}}<div id="edit-post-link"><a href="{{editLink}}{{current}}">Edit this post</a></div>{{/editLink}}
<article>
<div>
{{#metadata.title}}
<h1>{{metadata.title}}</h1>
{{/metadata.title}}
<div class="post-content">
{{{html}}}
</div>
</div>
</article>
</script>
<script src="config.js"></script>
<script src="js/vendor/satnav.js"></script>
<script src="js/build.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-11745494-1', 'joshduff.com');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
</script>
<script src="js/vendor/bugsense-2.0.1.min.js"></script>
<script>
Bugsense.initAndStartSession( { apiKey: "68ce8bd2" } );
</script>
</body>
</html>