Files
westfarn 1ef6624a8b
Deploy Beta / unit-tests (push) Successful in 9s
Deploy Beta / docker (push) Successful in 13s
Deploy Beta / deploy-beta (push) Successful in 1m10s
Add Terms of Service and tighten mobile public polish.
Route Cookie Preferences to /terms/, link analytics banner there, teal mobile nav, and give the contact form more side padding on small screens.
2026-08-08 09:12:11 -05:00

22 lines
707 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("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",
),
]