|
|
|
@ -11,7 +11,7 @@ layout: default
|
|
|
|
|
<ul class="post-list"> |
|
|
|
|
{% for post in paginator.posts %} |
|
|
|
|
<li> |
|
|
|
|
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }} • <small>{{ post.categories | array_to_sentence_string }}</small></span> |
|
|
|
|
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }} • <small>{{ post.categories | array_to_sentence_string }} • <a href="{% if post.disqus_url %}{{ post.disqus_url | prepend: site.baseurl }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}#disqus_thread">comments</a></small></span> |
|
|
|
|
<h2><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2> |
|
|
|
|
</li> |
|
|
|
|
{% endfor %} |
|
|
|
@ -19,3 +19,15 @@ layout: default
|
|
|
|
|
{% include paginator.html %} |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
var disqus_shortname = 'mycapsules'; |
|
|
|
|
|
|
|
|
|
/* * * DON'T EDIT BELOW THIS LINE * * */ |
|
|
|
|
(function () { |
|
|
|
|
var s = document.createElement('script'); s.async = true; |
|
|
|
|
s.type = 'text/javascript'; |
|
|
|
|
s.src = '//' + disqus_shortname + '.disqus.com/count.js'; |
|
|
|
|
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); |
|
|
|
|
}()); |
|
|
|
|
</script> |