Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 930 Bytes

blog.md

File metadata and controls

32 lines (30 loc) · 930 Bytes
layout
default

blog

    {% assign blog_posts = site.posts | where: 'blog_post', true %} {% if blog_posts.size == 0 %}
{% else %} {% for post in blog_posts limit:3 %}
  • {{ post.date | date: "%Y-%m-%d" }}
    {{ post.title }}

  • {% if forloop.last %}{% endif %} {% endfor %} {% endif %}