Files
college_craft/site/public/urls.py
T
westfarn b46e192138
Deploy Beta / unit-tests (push) Successful in 21s
Deploy Beta / docker (push) Successful in 26s
Deploy Beta / deploy-beta (push) Successful in 6m25s
Ship College Craft public site and point CI deploys at college_craft.
Replaces template branding with College Craft pages, assets, and copy, and
matches Gitea deploy workflows to the server-infra catalog name and master
branch so beta deploys actually run.

Closes #1
2026-09-02 09:42:43 -05:00

25 lines
884 B
Python

from django.urls import path
from public import views
app_name = "public"
urlpatterns = [
path("", views.home, name="home"),
path("about/", views.about, name="about"),
path("services/", views.services, name="services"),
path("testimonials/", views.testimonials, name="testimonials"),
path("careers/", views.careers, name="careers"),
path("contact/", views.contact, name="contact"),
path("terms/", views.terms, name="terms"),
path("robots.txt", views.robots_txt, name="robots_txt"),
path("sitemap.xml", views.sitemap_xml, name="sitemap_xml"),
path("under-construction/", views.under_construction, name="under_construction"),
path("unsubscribe/<str:token>/", views.unsubscribe, name="unsubscribe"),
path(
"unsubscribe/<str:token>/one-click/",
views.unsubscribe_one_click,
name="unsubscribe_one_click",
),
]