index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. layout: page
  3. tagline:
  4. ---
  5. {% for post in paginator.posts %}
  6. <div class="page-header">
  7. <h1>{{ post.title }} {% if post.tagline %} <small>{{ post.tagline }}</small>{% endif %}</h1>
  8. </div>
  9. <article class="home">
  10. <div>
  11. {% if post.fullview %}
  12. {{ post.content }}
  13. {% else %}
  14. {% if post.shortinfo %}
  15. {{ post.shortinfo }}
  16. {% elsif post.description %}
  17. {{ post.description }}
  18. {% else %}
  19. {{ post.excerpt }}
  20. {% endif %}
  21. {% endif %}
  22. </div>
  23. </article>
  24. {% endfor %}
  25. <hr/>
  26. <ul class="pager">
  27. {% if paginator.previous_page %}
  28. <li class="previous">
  29. {% if paginator.previous_page == 1 %}
  30. <a href="{{ site.BASE_PATH }}/">&larr; Previous</a>
  31. {% else %}
  32. <a href="{{ site.BASE_PATH }}/{{ site.paginate_path | replace: ':num', paginator.previous_page }}">&larr; Previous</a>
  33. {% endif %}
  34. </li>
  35. {% endif %}
  36. {% if paginator.next_page %}
  37. <li class="next">
  38. <a href="{{ site.BASE_PATH }}/{{ site.paginate_path | replace: ':num', paginator.next_page }}">Next &rarr;</a>
  39. </li>
  40. {% endif %}
  41. </ul>