From aeaec3ec9255324105ccf6925c0e30860c271f8c Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 20 Jan 2014 09:13:25 +0100 Subject: [PATCH] Add an explaination at how to customize templates in the httpserver doc. --- develop/httpserver.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/develop/httpserver.rst b/develop/httpserver.rst index 4e8e03a..a061c3a 100644 --- a/develop/httpserver.rst +++ b/develop/httpserver.rst @@ -258,3 +258,6 @@ are the only 'big' pages), like this:: handler.end_headers() # We won't send more headers handler.wfile.write(response) +Then, the user can change the template by copying +`data/web/supystory/index.html.example` to +`data/web/supystory/index.html` and editing it. (Same for `error.html`.)