From 26c7db12364e8eba08e2f8e85bb534ed735a0be8 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Thu, 13 Jun 2024 14:57:38 -0400 Subject: Major overhaul and cleanups --- _layouts/home.html | 67 ++++++++---------------------------------------------- 1 file changed, 9 insertions(+), 58 deletions(-) (limited to '_layouts/home.html') diff --git a/_layouts/home.html b/_layouts/home.html index 44b51e6..5fea726 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -1,63 +1,14 @@ --- -layout: base +layout: default --- -
- {%- if page.title -%} -

{{ page.title }}

- {%- endif -%} - - {{ content }} - - - {% if site.paginate %} - {% assign posts = paginator.posts %} - {% else %} - {% assign posts = site.posts %} - {% endif %} - - - {%- if posts.size > 0 -%} - {%- if page.list_title -%} -

{{ page.list_title }}

- {%- endif -%} - - - {% if site.paginate %} -
- -
- {%- endif %} - - See All Posts → - - {%- endif -%} +{{ content }} +{% for post in site.posts limit:5 %} +
+

{{ post.title }}

+ + {{ post.excerpt }}
+{% endfor %} + -- cgit v1.2.3-54-g00ecf