Page not found (404)

Request Method: GET
Request URL: http://www.dawnwages.info/blog.html

Using the URLconf defined in dawnwagesinfo.urls, Django tried these URL patterns, in this order:

  1. entry_page/<entry_page_id>/update_comments/ [name='entry_page_update_comments']
  2. <path:blog_path>/<int:year>/<int:month>/<int:day>/<str:slug>/ [name='entry_page_serve_slug']
  3. <int:year>/<int:month>/<int:day>/<str:slug>/ [name='entry_page_serve']
  4. <path:blog_path>/feed/ [name='blog_page_feed_slug']
  5. feed/ [name='blog_page_feed']
  6. django-admin/
  7. admin/
  8. documents/
  9. search/ [name='search']
  10. ^static/(?P<path>.*)$
  11. ^favicon\.ico$
  12. _util/authenticate_with_password/<int:page_view_restriction_id>/<int:page_id>/ [name='wagtailcore_authenticate_with_password']
  13. _util/login/ [name='wagtailcore_login']
  14. ^((?:[\w\-]+/)*)$ [name='wagtail_serve']

The current path, blog.html, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.