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/all_posts.html | 64 +++++++------------------------------------------ 1 file changed, 9 insertions(+), 55 deletions(-) (limited to '_layouts/all_posts.html') diff --git a/_layouts/all_posts.html b/_layouts/all_posts.html index c81df2f..9c29be9 100644 --- a/_layouts/all_posts.html +++ b/_layouts/all_posts.html @@ -1,61 +1,15 @@ --- -layout: base +layout: default --- -
- {%- if page.title -%} -

{{ page.title }}

- {%- endif -%} +

{{ page.title }}

- {{ 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 %} - - {%- endif -%} +{{ content }} +{% for post in site.posts %} +
+

{{ post.title }}

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