-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.41 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
---
layout: default
title: Heedspin Blog
description: An informal blog on ruby programming and other maybe some other topics.
links:
- <a href="http://econlog.econlib.org/archives/2011/06/the_ideological.html">Bryan Caplan on knowing the opinions of adversaries</a>
- <a href="http://douthat.blogs.nytimes.com/2012/07/26/on-gun-control-and-prohibition/">Ross Douthat on gun control</a>
- <a href="http://www.metacafe.com/watch/5153170/but_you_did_not_persuade_me/">But you did not persuade me!</a>
---
{% for post in site.posts %}
{% if post.homepage == true %}
<div class="post_header group">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<ul>
<li> {{post.date | date: "%B %d, %Y"}} </li>
<li> {{post.author}} </li>
</ul>
</div>
{{ post.content }}
<hr />
<br />
<p><a href="http://www.heedspin.com{{post.url}}#disqus_thread">Comments</a></p>
{% endif %}
{% endfor %}
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'heedspin';
var disqus_identifier = 'www.heedspin.com:{{ page.id }}';
var disqus_url = 'http://www.heedspin.com{{ page.url }}';
(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>