-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.html
More file actions
32 lines (32 loc) · 1.47 KB
/
header.html
File metadata and controls
32 lines (32 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="Negative Code is a Ruby design & development studio in Denver, Colorado. Less code is better code." name="description"/>
<title>{{ page.title }}</title>
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<link rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/negativecode" title="RSS"/>
<link rel="stylesheet" href="/stylesheets/reset.css"/>
<link rel="stylesheet" href="/stylesheets/text.css"/>
<link rel="stylesheet" href="/stylesheets/960.css"/>
<link rel="stylesheet" href="/stylesheets/style.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="/stylesheets/syntax.css" type="text/css" media="screen"/>
{% if page.previous %}
<link rel="prev" href="{{ page.previous.url }}"/>
{% endif %}
{% if page.next %}
<link rel="next" href="{{ page.next.url }}"/>
{% endif %}
<script src="https://use.typekit.net/crf4oti.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23201080-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>