-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.11 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.11 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
---
layout: site
title: Negative Code - Blog
page_id: posts-page
---
<div class="grid_4" id="alpha">
<h1 id="logo"><a href="/">Negative <span>Code</span></a></h1>
{% include entries.html %}
</div>
<div class="grid_7">
<p id="intro">
I'm David Graham, a software designer in Denver, Colorado. I work at
GitHub, making github.com a little more wonderful every day. Follow
me on <a href="https://twitter.com/davidgraham">Twitter</a>!
</p>
<ul class="posts">
{% for post in site.posts %}
<li>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
{{ post.content }}
<a href="{{ post.url }}#disqus_thread" data-disqus-identifier="{{ post.id }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
<script type="text/javascript">
var disqus_shortname = 'negativecode';
(function() {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>