--- id: blog title: Blog layout: blog --- {% include blog_pagination.html %}
{% for post in paginator.posts %} {% assign author = site.data.authors[post.author] %}

{{ post.title }}

{{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }}

{% if post.content contains '' %} {{ post.content | split:'' | first }} {% else %} {{ post.content }} {% endif %}

{% endfor %}
{% include blog_pagination.html %}