news_archive.html 919 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. title: News
  3. sidebar: mydoc_sidebar
  4. keywords: news, blog, updates, release notes, announcements
  5. permalink: news_archive.html
  6. toc: false
  7. folder: news
  8. ---
  9. <div class="home">
  10. <div class="post-list">
  11. <section id="archive">
  12. <h3>This year's posts</h3>
  13. {%for post in site.posts %}
  14. {% unless post.next %}
  15. <ul class="this">
  16. {% else %}
  17. {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
  18. {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
  19. {% if year != nyear %}
  20. </ul>
  21. <h3>{{ post.date | date: '%Y' }}</h3>
  22. <ul class="past">
  23. {% endif %}
  24. {% endunless %}
  25. <li><time>{{ post.date | date:"%d %b" }}</time><a href="{{ post.url | remove: "/"}}">{{ post.title }}</a></li>
  26. {% endfor %}
  27. </ul>
  28. </section>
  29. <hr/>
  30. </div>
  31. </div>