15 lines
525 B
Python
15 lines
525 B
Python
from django.contrib.flatpages.views import flatpage
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("", views.Homepage.as_view(), name="homepage"),
|
|
path("about/me/", flatpage, {"url": "/about/me/"}, name="about-me"),
|
|
path("about/website/", flatpage, {"url": "/about/website/"}, name="about-website"),
|
|
path("about/contact/", flatpage, {"url": "/about/contact/"}, name="contact-me"),
|
|
path("about/tools/", flatpage, {"url": "/about/tools/"}, name="about-tools"),
|
|
]
|