Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. ---
  2. layout: default
  3. ---
  4.  
  5. <!-- メインコンテンツ。内容はいろいろ変わる -->
  6. <div class="contents front-page">
  7. <div class="container">
  8.  
  9. {% for post in paginator.posts %}
  10. <article class="archive">
  11. <h2 class="archive__title"><a href="{{ post.url | prepend: baseurl }}">{{ post.title }}</a></h2>
  12. <p class="archive__date"><time>{{ post.date | date: '%B %d, %Y' }}</time></p>
  13. <div class="archive__excerpt">{{ post.excerpt }}</div>
  14. </article>
  15. {% endfor %}
  16.  
  17.  
  18. {% if paginator.total_pages > 1 %}
  19. <div class="pagination">
  20.  
  21. <p class="pagination__item--prev">
  22. {% if paginator.previous_page %}
  23. < <a href="{{ paginator.previous_page_path | relative_url }}">前のページ</a>
  24. {% endif %}
  25. </p>
  26.  
  27. <p class="pagination__item pagination__number">
  28. {{ paginator.page }} / {{ paginator.total_pages }}
  29. </p>
  30.  
  31. <p class="pagination__item--next">
  32. {% if paginator.next_page %}
  33. <a href="{{ paginator.next_page_path | relative_url }}">次のページ</a> >
  34. {% endif %}
  35. </p>
  36.  
  37. </div><!--pagination-->
  38. {% endif %}
  39.  
  40. </div><!--container-->
  41. </div><!--main-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement