home.html 888 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. layout: default
  3. ---
  4. <div>
  5. {%- if page.title -%}
  6. <header>
  7. <h1>{{ page.title }}</h1>
  8. </header>
  9. {%- endif -%}
  10. <section>
  11. {{ content }}
  12. </section>
  13. {%- if site.posts.size > 0 -%}
  14. <p class="h4">{{ page.list_title | default: "Posts" }}</p>
  15. <ul class="list-unstyled">
  16. {%- for post in site.posts -%}
  17. <li>
  18. <span class="text-muted">
  19. {%- assign date_format = "%b %-d, %Y" -%}
  20. {{ post.date | date: date_format }}
  21. </span>
  22. <p class="h5">
  23. <a href="{{ post.url | relative_url }}">
  24. {{ post.title | escape }}
  25. </a>
  26. </p>
  27. {%- if site.show_excerpts -%}
  28. {{ post.excerpt }}
  29. {%- endif -%}
  30. </li>
  31. {%- endfor -%}
  32. </ul>
  33. <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
  34. {%- endif -%}
  35. </div>