Skip to content

Commit 8ec506f

Browse files
Merge pull request #59 from data-8/archive-su22
Add Archive Banner to su22 website
2 parents b73363a + 331a530 commit 8ec506f

9 files changed

Lines changed: 64 additions & 1 deletion

File tree

su22/calendar.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>Calendar</h2>
6468

6569

su22/faq.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>FAQ</h2>
6468

6569

su22/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@
6161

6262
<div class="container">
6363
<section id="content">
64-
64+
<div class="archive-banner">
65+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
66+
<a href="https://data8.org">Find current offerings.</a>
67+
</div>
6568

6669
<h2>Announcements</h2>
6770

su22/materials.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>Materials</h2>
6468

6569

su22/office-hours.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>Office Hours</h2>
6468

6569

su22/policies.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>Policies</h2>
6468

6569

su22/python-reference.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>Python Reference</h2>
6468

6569

su22/staff.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
</nav>
6161

6262
<div class="container">
63+
<div class="archive-banner">
64+
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
65+
<a href="https://data8.org">Find current offerings.</a>
66+
</div>
6367
<h2>Staff</h2>
6468

6569

su22/theme/css/main.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,35 @@ a.anchor-link {
9696
.staff .name .biohover:active .bio {
9797
visibility: visible;
9898
}
99+
100+
.archive-banner {
101+
background-color: #d32f2f; /* Deep Red */
102+
color: white;
103+
text-align: center;
104+
padding: 12px 10px;
105+
font-family: sans-serif;
106+
font-weight: bold;
107+
position: relative;
108+
/* position: fixed;
109+
top: 0;
110+
left: 0; */
111+
z-index: 9999;
112+
width: 100%;
113+
box-sizing: border-box;
114+
border-bottom: 2px solid #b71c1c;
115+
}
116+
.archive-banner a {
117+
color: #ffffff;
118+
text-decoration: underline;
119+
text-decoration-thickness: 2px;
120+
text-underline-offset: 3px;
121+
font-weight: 700;
122+
}
123+
124+
.archive-banner a:hover,
125+
.archive-banner a:focus {
126+
text-decoration: none;
127+
background-color: #ffffff;
128+
color: #b30000;
129+
outline: 3px solid #ffcc00;
130+
}

0 commit comments

Comments
 (0)