-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (43 loc) · 1.42 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
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: default
title: Yuriy Palamarchuk
---
<div>
<div>
<ul class="posts">
{% for post in paginator.posts %}
<li>
<p>
{{ post.content }}
<a href="{{ post.url }}#disqus_thread" style="text-decoration: underline;">comments</a> | <a href="{{ post.url }}" style="text-decoration: underline;">Add a comment</a>
</p>
</li>
{% endfor %}
</ul>
</div>
<div class="paging">
{% if paginator.next_page %}
<a href="/page{{paginator.next_page}}" class="older"><h3>Older posts</h3></a>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<a href="/" class="newer"><h3>Newer Posts</h3></a>
{% else %}
<a href="/page{{paginator.previous_page}}" class="newer"><h3>Newer posts</h3></a>
{% endif %}
{% endif %}
</div>
</div>
<!-- DISQUS comments -->
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'youli'; // 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 = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<!-- DISQUS comments -->