website/blog.md

448 B

layout title permalink
page Blog /blog.html
{% for post in site.posts %}

{{ post.title }}

  <div class="entry">
    {{ post.excerpt }}
  </div>
  <h4>Written on {{ post.date | date: "%B %e, %Y" }}</h4>
  <a href="{{ post.url }}" class="read-more">Read More</a>
</article>

{% endfor %}