Skip to content

Commit

Permalink
Fix list.html meta.
Browse files Browse the repository at this point in the history
Also reduce output whitespace.
  • Loading branch information
XhmikosR committed Dec 17, 2018
1 parent 1c99333 commit 7e83ca1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions list.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
---
layout: default
name: "list"
title: Posts List
description: "A list of all blog posts"
---

<ul class="list">
{% for post in site.posts %}
{%- for post in site.posts %}
<li>
<span>{{ post.date | date_to_string }}</span>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
{% endfor -%}
</ul>

0 comments on commit 7e83ca1

Please sign in to comment.