1--- 2id: all 3layout: blog 4category: blog 5--- 6 7<div class="posts"> 8 <div class="post"> 9 <h1>All Posts</h1> 10 {% for post in site.posts %} 11 {% assign author = site.data.authors[post.author] %} 12 <p> 13 <strong> 14 <a href="{{ post.url }}">{{ post.title }}</a> 15 </strong> 16 on {{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }} 17 </p> 18 {% endfor %} 19 </div> 20</div> 21