diff --git a/output/librarymain.html b/output/librarymain.html index e9ff323..3a7a5c9 100755 --- a/output/librarymain.html +++ b/output/librarymain.html @@ -74,7 +74,7 @@
Library Entry

This library entry is sure to boggle the mind! Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magnam nam unde sequi nemo voluptatem voluptate autem quaerat perspiciatis! Error ut, velit sed rerum voluptatum officiis pariatur unde facilis inventore eligendi?

Library Entry Two

This is the second Library Entry, for testing. This is a very real blurb! It has important information, just enough to entice the visitor to click! -

Daily Study

Something to study!
Something else to study!
+

Daily Study

Weekly Chok L'Yisrael Torah section:
diff --git a/output/main.css b/output/main.css index 0aab84c..f539e42 100755 --- a/output/main.css +++ b/output/main.css @@ -55,7 +55,7 @@ img { } #main > div, #main > p { - background-color: var(--cream); + background-color: var(--scrollpaperlight); } #main > p:first-of-type { @@ -73,7 +73,7 @@ img { #main > div.space { background-color: transparent; height: clamp(150px, 30vh, 500px); - border-bottom: 50px solid var(--cream); + border-bottom: 50px solid var(--scrollpaperlight); } #main > div.bottom { @@ -120,7 +120,7 @@ img { top: 3px; left: 0px; clip-path: inherit; - background-color: var(--cream); + background-color: var(--scrollpaperlight); } #title { @@ -145,7 +145,7 @@ img { top: -3px; left: 0px; z-index: -1; - background-color: var(--cream); + background-color: var(--scrollpaperlight); clip-path: inherit; } @@ -175,8 +175,8 @@ div#nav { } div#banner { - background-color: var(--scrollpaperlight); - color: black; + background-color: var(--humanbody); + color: white; /*--colorslant-point: clamp(20px, 10vw, 200px); background-image: linear-gradient(90deg, var(--kuwaitred) 0px, var(--kuwaitred) var(--colorslant-point), white var(--colorslant-point), white calc(100% - var(--colorslant-point)), var(--kuwaitred) calc(100% - var(--colorslant-point)));*/ border-bottom: 4px solid var(--scrollight); @@ -198,7 +198,7 @@ div#banner { } #nav > a { - color: black; + color: inherit; } #banner > a > img { @@ -349,7 +349,7 @@ h1 { left: 0px; width: 100%; height: 50px; - background-image: linear-gradient(transparent 0%, white 100%); + background-image: linear-gradient(transparent 0%, var(--scrollpaperlight) 100%); z-index: 100000; } @@ -393,7 +393,6 @@ h1 { background-color: var(--deepcream); padding: 40px; margin: 10px; - border-radius: 20px; position: sticky; top: 40%; } diff --git a/output/torahstudy.js b/output/torahstudy.js new file mode 100755 index 0000000..106f31b --- /dev/null +++ b/output/torahstudy.js @@ -0,0 +1,74 @@ +// Manages the Torah Study section of the Library + +var chocklyisrael = [ // 54 Torah sections, updates every sunday (or whatever day he wants really) + "Bereishit", + "Noach", + "Lech Lecha", + "Vayeira", + "Chayei Sarah", + "Toldot", + "Vayeitzei", + "Vayishlach", + "Vayeishev", + "Mikeitz", + "Vayigash", + "Vayechi", + "Shemot", + "Vaeira", + "Bo", + "Beshalach", + "Yitro", + "Mishpatim", + "Terumah", + "Tetzaveh", + "Ki Tissa", + "Vayakhel", + "Pekudei", + "Vayikra", + "Tzav", + "Shemini", + "Tazria", + "Metzora", + "Acharei Mot", + "Kedoshim", + "Emor", + "Behar", + "Bechukotai", + "Bamidbar", + "Naso", + "Behalotkha", + "Shelach", + "Korach", + "Chukat", + "Balak", + "Pinchas", + "Mattot", + "Masei", + "Devarim", + "Vaetchanan", + "Eikev", + "Reaih", + "Shoftim", + "Ki Teitzei", + "Ki Tavo", + "Nitzavim", + "Vayelech", + "Haazinu", + "Zot Haberakha" +]; +const oneDay = 24 * 60 * 60 * 1000; // hours * minutes * seconds * milliseconds +const tripDay = 0; // sunday + +var startDate = new Date("2024-4-8"); +var now = new Date(); +var dif = now - startDate; +var difDays = Math.round(dif / oneDay); +/*difDays 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 + day sun mon tue wed thu fri sat sun mon tue wed thu fri sat sun mon tue wed thu fri sat sun mon tue wed thu fri sat sun mon tue wed thu fri sat + */ +var tripsSince = Math.floor(difDays / 7); +if (now.getDay() == tripDay) { + tripsSince++; +} + +document.getElementById("torahsection").innerText = chocklyisrael[tripsSince]; \ No newline at end of file diff --git a/site/librarymain.html b/site/librarymain.html index 177fc3e..d7944af 100644 --- a/site/librarymain.html +++ b/site/librarymain.html @@ -16,14 +16,12 @@

Daily Study

- Something to study! -
-
- Something else to study! + Weekly Chok L'Yisrael Torah section:
+ [/] [=title "Library"] diff --git a/site/main.css b/site/main.css index 0aab84c..f539e42 100644 --- a/site/main.css +++ b/site/main.css @@ -55,7 +55,7 @@ img { } #main > div, #main > p { - background-color: var(--cream); + background-color: var(--scrollpaperlight); } #main > p:first-of-type { @@ -73,7 +73,7 @@ img { #main > div.space { background-color: transparent; height: clamp(150px, 30vh, 500px); - border-bottom: 50px solid var(--cream); + border-bottom: 50px solid var(--scrollpaperlight); } #main > div.bottom { @@ -120,7 +120,7 @@ img { top: 3px; left: 0px; clip-path: inherit; - background-color: var(--cream); + background-color: var(--scrollpaperlight); } #title { @@ -145,7 +145,7 @@ img { top: -3px; left: 0px; z-index: -1; - background-color: var(--cream); + background-color: var(--scrollpaperlight); clip-path: inherit; } @@ -175,8 +175,8 @@ div#nav { } div#banner { - background-color: var(--scrollpaperlight); - color: black; + background-color: var(--humanbody); + color: white; /*--colorslant-point: clamp(20px, 10vw, 200px); background-image: linear-gradient(90deg, var(--kuwaitred) 0px, var(--kuwaitred) var(--colorslant-point), white var(--colorslant-point), white calc(100% - var(--colorslant-point)), var(--kuwaitred) calc(100% - var(--colorslant-point)));*/ border-bottom: 4px solid var(--scrollight); @@ -198,7 +198,7 @@ div#banner { } #nav > a { - color: black; + color: inherit; } #banner > a > img { @@ -349,7 +349,7 @@ h1 { left: 0px; width: 100%; height: 50px; - background-image: linear-gradient(transparent 0%, white 100%); + background-image: linear-gradient(transparent 0%, var(--scrollpaperlight) 100%); z-index: 100000; } @@ -393,7 +393,6 @@ h1 { background-color: var(--deepcream); padding: 40px; margin: 10px; - border-radius: 20px; position: sticky; top: 40%; } diff --git a/site/torahstudy.js b/site/torahstudy.js new file mode 100644 index 0000000..106f31b --- /dev/null +++ b/site/torahstudy.js @@ -0,0 +1,74 @@ +// Manages the Torah Study section of the Library + +var chocklyisrael = [ // 54 Torah sections, updates every sunday (or whatever day he wants really) + "Bereishit", + "Noach", + "Lech Lecha", + "Vayeira", + "Chayei Sarah", + "Toldot", + "Vayeitzei", + "Vayishlach", + "Vayeishev", + "Mikeitz", + "Vayigash", + "Vayechi", + "Shemot", + "Vaeira", + "Bo", + "Beshalach", + "Yitro", + "Mishpatim", + "Terumah", + "Tetzaveh", + "Ki Tissa", + "Vayakhel", + "Pekudei", + "Vayikra", + "Tzav", + "Shemini", + "Tazria", + "Metzora", + "Acharei Mot", + "Kedoshim", + "Emor", + "Behar", + "Bechukotai", + "Bamidbar", + "Naso", + "Behalotkha", + "Shelach", + "Korach", + "Chukat", + "Balak", + "Pinchas", + "Mattot", + "Masei", + "Devarim", + "Vaetchanan", + "Eikev", + "Reaih", + "Shoftim", + "Ki Teitzei", + "Ki Tavo", + "Nitzavim", + "Vayelech", + "Haazinu", + "Zot Haberakha" +]; +const oneDay = 24 * 60 * 60 * 1000; // hours * minutes * seconds * milliseconds +const tripDay = 0; // sunday + +var startDate = new Date("2024-4-8"); +var now = new Date(); +var dif = now - startDate; +var difDays = Math.round(dif / oneDay); +/*difDays 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 + day sun mon tue wed thu fri sat sun mon tue wed thu fri sat sun mon tue wed thu fri sat sun mon tue wed thu fri sat sun mon tue wed thu fri sat + */ +var tripsSince = Math.floor(difDays / 7); +if (now.getDay() == tripDay) { + tripsSince++; +} + +document.getElementById("torahsection").innerText = chocklyisrael[tripsSince]; \ No newline at end of file