summaryrefslogtreecommitdiffstats
path: root/source/index.html
blob: 26146670963388e4e987a53dbf6cd1d69b28a266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
---

<section id="main_col" class="left">
    {% assign index = true %}
    {% for post in paginator.posts %}
    {% assign content = post.content %}
        <article class="post">{% include article.html %}</article>
    {% endfor %}
    <nav id="pagenavi">
        {% if paginator.previous_page %}
            <a href="{{paginator.previous_page}}" class="prev">上一頁</a>
        {% endif %}
        {% if paginator.next_page %}
            <a href="{{paginator.next_page}}" class="next">下一頁</a>
        {% endif %}
    </nav>
</section>
{% include asides.html %}
<div class="clear"></div>