diff --git a/_layouts/home.html b/_layouts/home.html index a06e091..a34c058 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -3,24 +3,24 @@ layout: default ---
-{% for post in site.posts %} +{% for note in site.notes %}

- {{ post.title }} + {{ note.title }}

{% if post.excerpt %} - {{ post.excerpt | markdownify | strip_html }} + {{ note.excerpt | markdownify | strip_html }} {% else %} - {{ post.content | markdownify | strip_html | truncate: 160 }} + {{ note.content | markdownify | strip_html | truncate: 160 }} {% endif %}