Introduce some very, VERY basic support for micropub - only h-entry works, and only the name and content properties can actually be set, but it works
This commit is contained in:
parent
a3f23e3b4d
commit
9a98fcdf4f
7 changed files with 68 additions and 0 deletions
7
micropub/urls.py
Normal file
7
micropub/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import url
|
||||
from . import views
|
||||
|
||||
app_name = 'micropub'
|
||||
urlpatterns = (
|
||||
url('^$', views.micropub, name='micropub'),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue