From 48f51dea411885e510cb9aa2887e83be289232f6 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 2 Feb 2012 14:12:46 -0600 Subject: Add a retro site view and link it to a URL This is from our friends at web.archive.org, who's earliest capture of the Arch Linux website was on March 28, 2002. Seems like something nice to do around the 10th anniversary of the website being up and the distro being around, and not hotlinking their servers also seems like a good idea. Signed-off-by: Dan McGee --- urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'urls.py') diff --git a/urls.py b/urls.py index 946c7ec..a061f03 100644 --- a/urls.py +++ b/urls.py @@ -70,6 +70,10 @@ urlpatterns += patterns('public.views', (r'^master-keys/$', 'keys', {}, 'page-keys'), ) +urlpatterns += patterns('retro.views', + (r'^retro/(?P[0-9]{4})/$', 'retro_homepage', {}, 'retro-homepage'), +) + # Includes and other remaining stuff urlpatterns += patterns('', # cache this static JS resource for 1 week rather than default 5 minutes -- cgit v1.2.3-24-g4f1b