Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 821 Bytes

File metadata and controls

31 lines (26 loc) · 821 Bytes
layout default
{% for post in site.posts %}
  <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
  <div class="summary-date">
    {{ post.date | date: "%B %e, %Y" }}
    {% assign author = site.data.authors[post.author] %}
    {% if author %}
      <span>
        <!-- Personal Info. -->
        by {{ author.name }}
      </span>
    {% endif %}
  </div>

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

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

{% endfor %}