basic app structure setup
This commit is contained in:
parent
22b616082b
commit
be4123361f
11 changed files with 60 additions and 0 deletions
10
markdownblog/blog/views.py
Normal file
10
markdownblog/blog/views.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
|
||||
# Create your views here.
|
||||
def viewblog(request):
|
||||
return None
|
||||
|
||||
|
||||
def addpost(request):
|
||||
return render(request, 'blog/addpost.html')
|
||||
Loading…
Add table
Add a link
Reference in a new issue