| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ---
- layout: page
- tagline:
- ---
- {% for post in paginator.posts %}
- <div class="page-header">
- <h1>{{ post.title }} {% if post.tagline %} <small>{{ post.tagline }}</small>{% endif %}</h1>
- </div>
- <article class="home">
- <div>
- {% if post.fullview %}
- {{ post.content }}
- {% else %}
- {% if post.shortinfo %}
- {{ post.shortinfo }}
- {% elsif post.description %}
- {{ post.description }}
- {% else %}
- {{ post.excerpt }}
- {% endif %}
- {% endif %}
- </div>
- </article>
- {% endfor %}
- <hr/>
- <ul class="pager">
- {% if paginator.previous_page %}
- <li class="previous">
- {% if paginator.previous_page == 1 %}
- <a href="{{ site.BASE_PATH }}/">← Previous</a>
- {% else %}
- <a href="{{ site.BASE_PATH }}/{{ site.paginate_path | replace: ':num', paginator.previous_page }}">← Previous</a>
- {% endif %}
- </li>
- {% endif %}
- {% if paginator.next_page %}
- <li class="next">
- <a href="{{ site.BASE_PATH }}/{{ site.paginate_path | replace: ':num', paginator.next_page }}">Next →</a>
- </li>
- {% endif %}
- </ul>
|