From 2be98a32842b54aa452f46779415efc9a077de5d Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Mon, 29 Dec 2025 09:10:28 -0800 Subject: [PATCH] add about page --- about/index.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ scripts/nav.js | 10 +++++++--- 2 files changed, 53 insertions(+), 3 deletions(-) create mode 100644 about/index.html diff --git a/about/index.html b/about/index.html new file mode 100644 index 0000000..c3c2428 --- /dev/null +++ b/about/index.html @@ -0,0 +1,46 @@ + + + + About | the historic Beall Greenhouses + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + Linework icon depicting a sunrise or sunset with two clouds, in a blue and orange color scheme + Linework icon depicting a sunrise or sunset with two clouds, in a blue and orange color scheme +
+
+

About the Beall Greenhouses

+ +

Past

+ +

Present

+ +

Future

+
+
+ + + diff --git a/scripts/nav.js b/scripts/nav.js index 695f290..bdfd767 100644 --- a/scripts/nav.js +++ b/scripts/nav.js @@ -2,11 +2,15 @@ const navItems = [ { href: "/", - name: "↩ back home" + title: "↩ back home" + }, + { + href: "/about/", + title: "ⓘ about" }, { href: "/events/", - name: "📅 all events" + title: "🗓 events" } ]; @@ -17,7 +21,7 @@ const populateNav = function() { for (const item of navItems) { let a = document.createElement("a"); a.href = item.href; - a.innerHTML = item.name; + a.innerHTML = item.title; if (item.href === path) a.id = "current-page";