Skip to content

Latest commit

 

History

History
34 lines (33 loc) · 1.32 KB

blog.md

File metadata and controls

34 lines (33 loc) · 1.32 KB
layout header-title
full-width
Blog
    {% assign main_posts = site.posts | where: "main", true %} {% assign archive_posts = site.posts | where: "main", false %}

    Context Window

    {% for post in main_posts %}

  • {{ post.title }}

    {{ post.date | date: "%B %-d, %Y" }}
  • {% endfor %}

    Archive

    {% for post in archive_posts %}

  • {{ post.title }}

    {{ post.date | date: "%B %-d, %Y" }}
  • {% endfor %}