home.html 536 B

12345678910111213141516171819202122232425262728
  1. ---
  2. layout: default
  3. ---
  4. <div class="home">
  5. {{ content }}
  6. {% assign posts = site.posts %}
  7. {%- if posts.size > 0 -%}
  8. {%- if page.list_title -%}
  9. <h2 class="post-list-heading">{{ page.list_title }}</h2>
  10. {%- endif -%}
  11. <div class="box home-box">
  12. <div class="post-list">
  13. {%- for post in posts -%}
  14. <a class="post-link" href="{{ post.url | relative_url }}">
  15. <h3>{{ post.title | escape }}</h3>
  16. </a>
  17. {%- endfor -%}
  18. </div>
  19. </div>
  20. {%- endif -%}
  21. </div>