10 lines
170 B
Python
10 lines
170 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
|
||
|
def home(request):
|
||
|
return render(request, "blog/home.html")
|
||
|
|
||
|
|
||
|
def about(request):
|
||
|
return render(request, "blog/about.html")
|