Allow "About" page to be render dynamically.

In prep for the new "About" page to serve dynamic (though
periodically cached) content.
This commit is contained in:
Jonathan S. Katz
2018-04-15 22:05:59 -04:00
parent 7bf0a9160b
commit f89d0d9b61
3 changed files with 10 additions and 0 deletions

View File

@ -35,6 +35,7 @@ urlpatterns = [
url(r'^$', pgweb.core.views.home),
url(r'^dyncss/(?P<css>base|docs).css$', pgweb.core.views.dynamic_css),
url(r'^about/$', pgweb.core.views.about),
url(r'^about/newsarchive/([^/]+/)?$', pgweb.news.views.archive),
url(r'^about/news/(\d+)(-.*)?/$', pgweb.news.views.item),
url(r'^about/news/taglist.json/$', pgweb.news.views.taglist_json),