forked from poplus/home-poplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
32 lines (27 loc) · 1.05 KB
/
blog.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
---
layout: default
title: Blog Poplus
---
<h1>Blog</h1>
<ul class="post">
{% for post in site.categories.post %}
<div>
<p class="meta">Posted on {{ post.date | date_to_string }}</p>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<h5>By {{ post.author }}</h5>
{{ post.content }}
<a href="{{ site.url}}{{ post.url }}/#disqus_thread"> Comments</a>
</div>
{% endfor %}
</ul>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = '{{ site.disqus.shortname }}'; // 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>