diff options
Diffstat (limited to '_layouts/all_posts.html')
-rw-r--r-- | _layouts/all_posts.html | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/_layouts/all_posts.html b/_layouts/all_posts.html index 9c29be9..182a2d0 100644 --- a/_layouts/all_posts.html +++ b/_layouts/all_posts.html @@ -7,9 +7,6 @@ layout: default {{ content }} {% for post in site.posts %} -<div class="post"> - <h3><a href="{{ post.url }}">{{ post.title }}</a></h3> - <span class="post-date">{{ post.date | date: "%B %-d, %Y" }}</span> -</div> + <small>{{ post.date | date: "%B %-d, %Y" }}</small><br><a href="{{ post.url }}">{{ post.title }}</a><br><br> {% endfor %} |