From 7bc33e9815001f96ef6b22c507cf9bf2194ec684 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Sun, 26 May 2024 08:33:15 -0400 Subject: Static placement of minima theme, minor customizations --- _layouts/home.html | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 _layouts/home.html (limited to '_layouts/home.html') diff --git a/_layouts/home.html b/_layouts/home.html new file mode 100644 index 0000000..34dc79b --- /dev/null +++ b/_layouts/home.html @@ -0,0 +1,63 @@ +--- +layout: base +--- + +
+ {%- 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 -%} + +
-- cgit v1.2.3-54-g00ecf