From 20fbba631342c7718ad9ab69ed0d0aa969f054e1 Mon Sep 17 00:00:00 2001 From: R Tyler Croy Date: Mon, 30 Jan 2023 13:16:18 -0800 Subject: [PATCH] Remove the unnecessary home layout This may have been causing some problems with the index page not updating when doing local writing --- _layouts/home.html | 101 ------------------------------------------ assets/css/apache.css | 3 +- index.html | 98 +++++++++++++++++++++++++++++++++++++++- 3 files changed, 99 insertions(+), 103 deletions(-) delete mode 100644 _layouts/home.html diff --git a/_layouts/home.html b/_layouts/home.html deleted file mode 100644 index c64d3a5..0000000 --- a/_layouts/home.html +++ /dev/null @@ -1,101 +0,0 @@ ---- -layout: default -title: Home ---- - -
- - - - - - - - {% if paginator.previous_page %} - - - - {% endif %} - {% for post in paginator.posts %} - - - - - {% endfor %} - {% if paginator.next_page %} - - - - {% endif %} - - - - - - - - - - - - - - - - - - - - - -
- - about.txt -
- - blog/ -
- - - Newer Posts -
- - - {{ post.title }} - - - {{ post.date | date_to_string }} - -
- - - Older Posts -
- - feeds/ -
- - - atom.xml -
- - - microblog.xml -
- - - podcast-picks.xml -
- - - Mastodon -
- - gopher site -
- - tags/ -
- -
-
diff --git a/assets/css/apache.css b/assets/css/apache.css index d0b5f71..b10f2c7 100644 --- a/assets/css/apache.css +++ b/assets/css/apache.css @@ -1,9 +1,10 @@ body { background-color: #fff; + font-size: 1.3rem; } .container { - max-width: calc(800px); + max-width: calc(1024px); margin-left: auto; margin-right: auto; } diff --git a/index.html b/index.html index 43454ab..074076b 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,101 @@ --- -layout: home +layout: default title: Home --- +
+ + + + + + + + {% if paginator.previous_page %} + + + + {% endif %} + {% for post in paginator.posts %} + + + + + {% endfor %} + {% if paginator.next_page %} + + + + {% endif %} + + + + + + + + + + + + + + + + + + + + + +
+ + about.txt +
+ + blog/ +
+ + + Newer Posts +
+ + + {{ post.title }} + + + {{ post.date | date_to_string }} + +
+ + + Older Posts +
+ + feeds/ +
+ + + atom.xml +
+ + + microblog.xml +
+ + + podcast-picks.xml +
+ + + Mastodon +
+ + gopher site +
+ + tags/ +
+ +
+