Source code for pages.views

from django.views.generic import TemplateView


[docs] class HomePageView(TemplateView): template_name = "pages/home.html"
[docs] class AboutPageView(TemplateView): template_name = "pages/about.html"