blog.html 1005 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. layout: default
  3. route: blog
  4. ---
  5. {% include blog-hero.html %}
  6. <section class="section">
  7. <div class="container">
  8. <div class="columns is-multiline">
  9. {% for post in site.posts %}
  10. <article class="column is-4">
  11. <a class="bd-article-image is-{{ post.color }}" href="{{ post.url }}">
  12. <span class="bd-article-overlay"></span>
  13. <span class="bd-article-icon">
  14. <i class="fa fa-{{ post.icon }}"></i>
  15. </span>
  16. <strong class="bd-article-info">
  17. <span>
  18. <time class="bd-article-date" datetime="{{ post.date | date_to_xmlschema }}">
  19. {{ post.date | date_to_string }}
  20. </time>
  21. <strong class="bd-article-title">
  22. {{ post.name }}
  23. </strong>
  24. </span>
  25. </strong>
  26. </a>
  27. </article>
  28. {% endfor %}
  29. </div>
  30. </div>
  31. </section>