From 86b8d79295739a4ee38445f5b3c9d440c6793e4b Mon Sep 17 00:00:00 2001 From: Noah Hanford Date: Thu, 5 Feb 2026 23:15:25 -0500 Subject: [PATCH 01/10] Rename CSHPublicSite to Pubsite in README (#383) * Rename CSHPublicSite to Pubsite in README Updated the project name from 'CSHPublicSite' to 'Pubsite' in README. * Fix container name in README for local development * Update README with correct GitHub issue link --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79bd0c4..dd300e5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# CSHPublicSite - [csh.rit.edu](https://csh.rit.edu) +# Pubsite - [csh.rit.edu](https://csh.rit.edu) The public facing website for [Rochester Institute of Technology](https://rit.edu/)'s [Computer Science House](https://csh.rit.edu). @@ -8,8 +8,8 @@ This site is written using [Jekyll](https://jekyllrb.com/), a static site genera ## Local Development -Build the container: `docker build -t cshpublicsite .` -Run the container: `docker run -p 4000:80 cshpublicsite` +Build the container: `docker build -t pubsite .` +Run the container: `docker run -p 4000:80 pubsite` or pick your favorite port You will be able to access the site at http://localhost:4000. You can either edit files in the container, or rebuild the container when you want to test changes. @@ -23,4 +23,4 @@ You can either edit files in the container, or rebuild the container when you wa ## Questions/Concerns -Please file an [Issue](https://github.com/ComputerScienceHouse/CSHPublicSite/issues/new) on this repository or contact [webmaster@csh.rit.edu](mailto:webmaster@csh.rit.edu) with inquiries about the site. +Please file an [Issue](https://github.com/ComputerScienceHouse/pubsite/issues/new) on this repository or contact [webmaster@csh.rit.edu](mailto:webmaster@csh.rit.edu) with inquiries about the site. From f8b1c61ef2d218283446ac021ccf6a45ada7c4aa Mon Sep 17 00:00:00 2001 From: Logan Endes Date: Wed, 11 Feb 2026 19:23:30 -0500 Subject: [PATCH 02/10] Add 50th Anniversary Info Banner to homepage --- assets/css/main.scss | 36 ++++++++++++++++++++++++++++++++++++ index.html | 15 +++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/assets/css/main.scss b/assets/css/main.scss index 997bbfb..5778b45 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -154,6 +154,42 @@ a.btn { } } +// CSS For 50th Info Banner +#info-banner { + background-color: rgba(255, 0, 0, 0.5); /* Red background with 50% opacity */ + color: #fff; /* White text for contrast */ + text-align: center; + padding: 10px 20px; + position: fixed; + top: 0; + width: 100%; + z-index: 1000; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +#info-banner p { + margin: 0; + display: inline-block; +} + +#close-banner { + background: none; + border: none; + font-size: 16px; + cursor: pointer; + margin-left: 10px; + color: #fff; /* White close button for visibility */ +} + +#info-banner a { + color: green; /* Set the link color to blue */ + text-decoration: underline; /* Optional: Add underline for better visibility */ +} + +#info-banner a:visited { + color: green; /* Ensure visited links also remain blue */ +} + @import "typography"; diff --git a/index.html b/index.html index d284ac3..686706f 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,13 @@ active: home --- + +
+

ATTENTION ALUMNI & MEMBERS: The 50th Anniversary will be held from April 10th-12th, 2026!

+

Find out more at 50th.csh.rit.edu

+ +
+
+ + + \ No newline at end of file From 0f76b4172c686b899093435af409b251e7a8ec0c Mon Sep 17 00:00:00 2001 From: Logan Endes Date: Wed, 11 Feb 2026 19:26:37 -0500 Subject: [PATCH 03/10] Update 50th Anniversary banner link to use HTTPS --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 686706f..4632c0f 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@

ATTENTION ALUMNI & MEMBERS: The 50th Anniversary will be held from April 10th-12th, 2026!

-

Find out more at 50th.csh.rit.edu

+

Find out more at 50th.csh.rit.edu

From 39dab82bf51d2835348a0ee4d345256f929109ba Mon Sep 17 00:00:00 2001 From: Logan Endes Date: Wed, 11 Feb 2026 20:04:41 -0500 Subject: [PATCH 04/10] change banner colors to account for color blindness --- assets/css/main.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/css/main.scss b/assets/css/main.scss index 5778b45..5f2f961 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -156,7 +156,7 @@ a.btn { // CSS For 50th Info Banner #info-banner { - background-color: rgba(255, 0, 0, 0.5); /* Red background with 50% opacity */ + background-color: rgba(255, 0, 255, 0.5); /* Red background with 50% opacity */ color: #fff; /* White text for contrast */ text-align: center; padding: 10px 20px; @@ -182,12 +182,12 @@ a.btn { } #info-banner a { - color: green; /* Set the link color to blue */ + color: lime; /* Set the link color to blue */ text-decoration: underline; /* Optional: Add underline for better visibility */ } #info-banner a:visited { - color: green; /* Ensure visited links also remain blue */ + color: lime; /* Ensure visited links also remain blue */ } From e829c3f9a8cc29cd56b0879942a7193ac769888f Mon Sep 17 00:00:00 2001 From: Logan Endes Date: Wed, 11 Feb 2026 20:21:21 -0500 Subject: [PATCH 05/10] above navbar --- assets/css/main.scss | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/assets/css/main.scss b/assets/css/main.scss index 5f2f961..baf63ed 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -156,7 +156,7 @@ a.btn { // CSS For 50th Info Banner #info-banner { - background-color: rgba(255, 0, 255, 0.5); /* Red background with 50% opacity */ + background-color: rgba(255, 0, 255, 0.8); /* Red background with 50% opacity */ color: #fff; /* White text for contrast */ text-align: center; padding: 10px 20px; @@ -167,6 +167,10 @@ a.btn { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } +.navbar { + margin-top: 50px; /* Adjust this value to match the height of the banner */ +} + #info-banner p { margin: 0; display: inline-block; @@ -182,12 +186,12 @@ a.btn { } #info-banner a { - color: lime; /* Set the link color to blue */ + color: white; /* Set the link color to blue */ text-decoration: underline; /* Optional: Add underline for better visibility */ } #info-banner a:visited { - color: lime; /* Ensure visited links also remain blue */ + color: white; /* Ensure visited links also remain blue */ } From 230565c2118101740c416ecd0e88e14f1436bc9d Mon Sep 17 00:00:00 2001 From: "Noah Hanford (spaced)" Date: Wed, 11 Feb 2026 21:04:57 -0500 Subject: [PATCH 06/10] fix fr --- _includes/nav.html | 9 ++++++++- assets/css/main.scss | 7 ------- index.html | 8 +------- 3 files changed, 9 insertions(+), 15 deletions(-) diff --git a/_includes/nav.html b/_includes/nav.html index 30a3213..029984a 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -1,4 +1,11 @@ -