From 1a084ead76aaff18dbf82ee3f9f57c288ab4cbcf Mon Sep 17 00:00:00 2001 From: iTakedown27 Date: Sun, 21 May 2023 18:02:07 -0700 Subject: [PATCH] Added Alumni Page Still need to test functionality of alumni info retrieval --- about.html | 1 + alumni.html | 166 ++++++++++++++++++++++++++++++++++++++++++++++++++ contact.html | 1 + index.html | 1 + js/scripts.js | 3 +- post.html | 1 + 6 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 alumni.html diff --git a/about.html b/about.html index 50d1b18..bd743f6 100644 --- a/about.html +++ b/about.html @@ -31,6 +31,7 @@ + diff --git a/alumni.html b/alumni.html new file mode 100644 index 0000000..57211f2 --- /dev/null +++ b/alumni.html @@ -0,0 +1,166 @@ + + + + + + + + PHS Programming Club - Alumni + + + + + + + + + + + + + +
+
+
+
+
+

Our Alumni

+
+
+
+
+
+ +
+
+
+
+ +

Alumni Directory

+

Want to connect with our alumni? Type in their name to find their contact information!

+ + +
+

+

+

+ + +
+ + + + + + + +
+
+
+
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/contact.html b/contact.html index 1a0bc10..56080b3 100644 --- a/contact.html +++ b/contact.html @@ -31,6 +31,7 @@ + diff --git a/index.html b/index.html index 05ec9ab..2869f44 100644 --- a/index.html +++ b/index.html @@ -32,6 +32,7 @@ + diff --git a/js/scripts.js b/js/scripts.js index e19c2d2..828ffe7 100644 --- a/js/scripts.js +++ b/js/scripts.js @@ -3,13 +3,14 @@ * Copyright 2013-2021 Start Bootstrap * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-clean-blog/blob/master/LICENSE) */ + window.addEventListener('DOMContentLoaded', () => { let scrollPos = 0; const mainNav = document.getElementById('mainNav'); const headerHeight = mainNav.clientHeight; window.addEventListener('scroll', function() { const currentTop = document.body.getBoundingClientRect().top * -1; - if ( currentTop < scrollPos) { + if (currentTop < scrollPos) { // Scrolling Up if (currentTop > 0 && mainNav.classList.contains('is-fixed')) { mainNav.classList.add('is-visible'); diff --git a/post.html b/post.html index 8d3c2bc..ac46055 100644 --- a/post.html +++ b/post.html @@ -28,6 +28,7 @@ +