Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 464 Bytes

index.md

File metadata and controls

22 lines (17 loc) · 464 Bytes
layout
default
{% for post in site.posts %}
  <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>

  <div>
    <p class="post_date">{{ post.date | date: "%B %e, %Y" }}</p>
  </div>

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

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

{% endfor %}