diff options
author | 2024-07-18 22:30:15 +0200 | |
---|---|---|
committer | 2024-07-18 22:30:15 +0200 | |
commit | 9ac9ef90cc14e684fd40c534a36a430968d85e9b (patch) | |
tree | e859e884a287952210f2abd24562c956dd6375ec /pydis_site/urls.py | |
parent | Merge pull request #1365 from python-discord/more-frameworks (diff) | |
parent | Merge branch 'main' into feat/timeline-from-yaml (diff) |
Merge pull request #1293 from python-discord/feat/timeline-from-yaml
Markdown + YAML for the timeline
Diffstat (limited to 'pydis_site/urls.py')
-rw-r--r-- | pydis_site/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/urls.py b/pydis_site/urls.py index 0f2f6aeb..799e8600 100644 --- a/pydis_site/urls.py +++ b/pydis_site/urls.py @@ -25,6 +25,7 @@ urlpatterns = ( path('pages/', include('pydis_site.apps.content.urls', namespace='content')), path('resources/', include('pydis_site.apps.resources.urls')), path('events/', include('pydis_site.apps.events.urls', namespace='events')), + path('timeline/', include('pydis_site.apps.timeline.urls', namespace='timeline')), path('', include('pydis_site.apps.home.urls', namespace='home')), ) |