Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ class Index(Page):
content_path = "index.html"


@app.page
class Students(Page):
content_path = "students.html"


@app.page
class Community(Page):
content_path = "community.html"
Expand All @@ -78,6 +83,11 @@ class Partnerships(Page):
content_path = "partnerships.html"


@app.page
class Leadership(Page):
content_path = "leadership.html"


@app.page
class About(Page):
template = "about.html"
Expand Down
11 changes: 11 additions & 0 deletions leadership.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url=/black-python-devs-leadership-summit-2026-ohio.html" />
<title>Redirecting to Black Python Devs Leaderhsip Summit 2026-Ohio</title>
</head>
<body>
<p>Redirecting to <a href="/black-python-devs-leadership-summit-2026-ohio.html">Black Python Devs Leaderhsip Summit 2026-Ohio</a>...</p>
</body>
</html>
11 changes: 11 additions & 0 deletions students.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="0; url=/student-ambassadors-program.html" />
<title>Redirecting to Student Ambassador Program</title>
</head>
<body>
<p>Redirecting to <a href="/student-ambassador-program.html">Student Ambassador Program</a>...</p>
</body>
</html>
Loading