"""Представление домашней страницы.""" from django.views import generic class Home(generic.TemplateView): """Домашняя страница.""" template_name: str = 'notes/home.html'