diff options
Diffstat (limited to 'doc/invocations-http-server/templates/base.html')
-rw-r--r-- | doc/invocations-http-server/templates/base.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/base.html b/doc/invocations-http-server/templates/base.html new file mode 100644 index 00000000..cf591652 --- /dev/null +++ b/doc/invocations-http-server/templates/base.html @@ -0,0 +1,13 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> +<html> + <head> + <title> + {% block heading %}Invocation Browser{% endblock %} + </title> + </head> + <body> + {% block content %} + <i>(no content)</i> + {% endblock %} + </body> +</html> |