From 6ae259e29bd58acefe0f430afd3d3475eecdfcfa Mon Sep 17 00:00:00 2001 From: UnclassedPenguin Date: Sun, 28 Nov 2021 18:47:47 -0700 Subject: [PATCH 1/2] update for favicon, add type="image/png" --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 337b917db3..1b160a1ca3 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -4,7 +4,7 @@ - + {{ page.title }} | {{site.name}} From 05bfb5af15e7435fa73bff15188b640bac7aeca5 Mon Sep 17 00:00:00 2001 From: UnclassedPenguin Date: Wed, 1 Dec 2021 17:36:02 -0700 Subject: [PATCH 2/2] fix duplicate featured post --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index fcf06c0e08..961c0bb2f2 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,11 @@

All Stories

{% for post in paginator.posts %} - {% include postbox.html %} + {% if post.featured != true %} + + {% include postbox.html %} + + {% endif %} {% endfor %}