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";