-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (38 loc) · 1.17 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
---
layout: default
title: rkj tech blog
---
<section>
<section id="articles">
{% for post in paginator.posts %}
<article class="post">
<header>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h1>
<span class="date">{{ post.date | date: "%Y-%m-%d" }}</span>
</header>
<section class="content">
{{ post.content | strip_html | truncatewords: 100 }}
</section>
<div class="more">
<a href="{{ post.url }}#disqus_thread">Comments</a>
|
<a href="{{ post.url }}">Read more »</a>
</div>
<script src="http://feeds.feedburner.com/~s/RkjTechBlog?i={{ post.url }}" type="text/javascript"></script>
</article>
<div class="more">
{% endfor %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a href="/index.html">« Newer</a>
{% else %}
<a href="/page{{ paginator.previous_page}}/index.html">« Newer</a>
{% endif %}
{% endif %}
|
{% if paginator.next_page %}
<a href="/page{{ paginator.next_page}}/index.html">Older »</a>
{% endif %}
</div>
</section>
</section>