aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/urls.py
blob: 30321ece76bb2bc734c4af58de218131f84a0ae0 (plain) (blame)
1
2
3
4
5
6
7
8
9
from django_distill import distill_path

from .views import HomeView, timeline

app_name = 'home'
urlpatterns = [
    distill_path('', HomeView.as_view(), name='home'),
    distill_path('timeline/', timeline, name="timeline"),
]