Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 405 Bytes

posts.md

File metadata and controls

23 lines (16 loc) · 405 Bytes
layout title permalink
page
All Posts
/posts/
{% for post in site.posts %}
  <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>

  <div class="entry">
    {{ post.excerpt }}
  </div>

  <a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>

{% endfor %}