5 lines
96 B
Python
5 lines
96 B
Python
from django.shortcuts import render
|
|
|
|
def blog(request):
|
|
return render(request, 'blog.html')
|