all.html 439 B

123456789101112131415161718192021
  1. ---
  2. id: all
  3. layout: blog
  4. category: blog
  5. ---
  6. <div class="posts">
  7. <div class="post">
  8. <h1>All Posts</h1>
  9. {% for post in site.posts %}
  10. {% assign author = site.data.authors[post.author] %}
  11. <p>
  12. <strong>
  13. <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
  14. </strong>
  15. on {{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }}
  16. </p>
  17. {% endfor %}
  18. </div>
  19. </div>