You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
--- |
|
layout: default |
|
--- |
|
|
|
<div class="home"> |
|
|
|
<h1 class="page-heading">Posts</h1> |
|
|
|
{% include paginator.html %} |
|
|
|
<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 }} • <a href="{{ post.url | prepend: site.baseurl }}#disqus_thread">comments</a></small></span> |
|
<h2><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2> |
|
|
|
{{ post.content }} |
|
</li> |
|
{% endfor %} |
|
|
|
{% include paginator.html %} |
|
|
|
</div> |
|
|
|
<script type="text/javascript"> |
|
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ |
|
var disqus_shortname = '10ninox'; // required: replace example with your forum shortname |
|
|
|
/* * * 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>
|
|
|