index.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. ---
  2. layout: page
  3. title:
  4. subtitle:
  5. use-site-title: false
  6. ---
  7. <<<<<<< HEAD
  8. <div class="posts-list">
  9. {% for post in paginator.posts %}
  10. <article class="post-preview">
  11. <a href="{{ post.url | relative_url }}">
  12. <h2 class="post-title">{{ post.title }}</h2>
  13. {% if post.subtitle %}
  14. <h3 class="post-subtitle">
  15. {{ post.subtitle }}
  16. </h3>
  17. {% endif %}
  18. </a>
  19. <p class="post-meta">
  20. Posted on {{ post.date | date: site.date_format }}
  21. </p>
  22. <div class="post-entry-container">
  23. {% if post.image %}
  24. <div class="post-image">
  25. <a href="{{ post.url | relative_url }}">
  26. <img src="{{ post.image | relative_url }}">
  27. </a>
  28. </div>
  29. {% endif %}
  30. <div class="post-entry">
  31. {{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
  32. {% assign excerpt_word_count = post.excerpt | number_of_words %}
  33. {% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
  34. <a href="{{ post.url | relative_url }}" class="post-read-more">[Read&nbsp;More]</a>
  35. {% endif %}
  36. </div>
  37. </div>
  38. {% if post.tags.size > 0 %}
  39. <div class="blog-tags">
  40. Tags:
  41. {% if site.link-tags %}
  42. {% for tag in post.tags %}
  43. <a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
  44. {% endfor %}
  45. {% else %}
  46. {{ post.tags | join: ", " }}
  47. {% endif %}
  48. </div>
  49. {% endif %}
  50. </article>
  51. {% endfor %}
  52. </div>
  53. {% if paginator.total_pages > 1 %}
  54. <ul class="pager main-pager">
  55. {% if paginator.previous_page %}
  56. <li class="previous">
  57. <a href="{{ paginator.previous_page_path | relative_url }}">&larr; Newer Posts</a>
  58. </li>
  59. {% endif %}
  60. {% if paginator.next_page %}
  61. <li class="next">
  62. <a href="{{ paginator.next_page_path | relative_url }}">Older Posts &rarr;</a>
  63. </li>
  64. {% endif %}
  65. </ul>
  66. {% endif %}
  67. =======
  68. >>>>>>> upstream/master