# make sure that you save the file when reloading changes in port 8000
# check the path you defined in views.py, and for urls.py
# views
def about(request):
return render(request, 'about.html')
# urls
urlpatterns [
path('', views.index, name='index'),
path('templates/about.html/', views.about, name="about")
]