initial import

This commit is contained in:
2017-03-06 17:58:18 +01:00
commit 0e7b015d20
276 changed files with 101193 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf8 -*-
from pyramid.view import notfound_view_config
@notfound_view_config(renderer='../templates/404.pt')
def notfound_view(request):
request.response.status = 404
return {
'page_title': 'Oups!',
}