From 45c8d59c1d052ee3a6ce5149d6e342758a7d0946 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 26 Nov 2022 00:10:58 -0500 Subject: Update regular pages to have proper background --- html/about.html | 4 ++-- html/assets/style.css | 6 ++++++ html/now.html | 4 ++-- makefile | 2 ++ templates/note.html | 2 +- tools/note.lua | 1 + 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/html/about.html b/html/about.html index a65f1ee..8f5b07b 100644 --- a/html/about.html +++ b/html/about.html @@ -1,6 +1,6 @@ - + @@ -26,7 +26,7 @@

About

-
+

Hello my name is Lucas Fryzek, and welcome to my website!

diff --git a/html/assets/style.css b/html/assets/style.css index af1fd0b..faee4ab 100644 --- a/html/assets/style.css +++ b/html/assets/style.css @@ -62,6 +62,12 @@ blockquote background-color: #FFFFFF; } +.main-container-page +{ + margin: 0; + background-color: #e9e9e7; +} + .note-body { padding-top: 10px; diff --git a/html/now.html b/html/now.html index 00c7061..5fe0330 100644 --- a/html/now.html +++ b/html/now.html @@ -1,6 +1,6 @@ - + @@ -26,7 +26,7 @@

Now

-
+

A monthly update about my life

diff --git a/makefile b/makefile index ae82e46..6c10813 100644 --- a/makefile +++ b/makefile @@ -29,6 +29,8 @@ $(HTML_DIR)/%.html: $(PAGE_DIR)/%.md pandoc -s --template=./templates/main.html \ $< \ --highlight-style=pygments \ + -M main_class="html-main-page" \ + -M main_container="main-container-page" \ -o $@ $(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) diff --git a/templates/note.html b/templates/note.html index e7da3cb..e18a44e 100644 --- a/templates/note.html +++ b/templates/note.html @@ -13,7 +13,7 @@ $endif$
-
+
$body$
diff --git a/tools/note.lua b/tools/note.lua index 631a617..0d3aff3 100644 --- a/tools/note.lua +++ b/tools/note.lua @@ -4,6 +4,7 @@ local status_map = {"seadling", "budding", "evergreen"} function Pandoc(doc) doc.meta["main_class"] = "html-note-page" + doc.meta["main_container"] = "main-container" doc.meta["front_page"] = false local status = stringify(doc.meta["status"]) -- cgit v1.2.3