2ef92fea51
I am in email thread with GitHub support about what is happening here.
21 lines
424 B
HTML
21 lines
424 B
HTML
---
|
|
id: all
|
|
layout: blog
|
|
category: blog
|
|
---
|
|
|
|
<div class="posts">
|
|
<div class="post">
|
|
<h1>All Posts</h1>
|
|
{% for post in site.posts %}
|
|
{% assign author = site.data.authors[post.author] %}
|
|
<p>
|
|
<strong>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</strong>
|
|
on {{ post.date | date: "%B %e, %Y" }} by {{ author.display_name }}
|
|
</p>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|