From 648adcf25c9c7bf99bcdc0e842dc14cf711feca6 Mon Sep 17 00:00:00 2001 From: dcwalk Date: Thu, 18 Mar 2021 21:15:51 -0400 Subject: [PATCH] Update home.html --- _layouts/home.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 %}