Mercurial > odfcast
diff templates/base.html @ 16:f4920ab1d27c
Add basic html interface for convert
This allow testing the code via the browser
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 14:02:55 +0200 |
parents | |
children | 75d5d18e7d52 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/base.html Mon Sep 29 14:02:55 2014 +0200 @@ -0,0 +1,11 @@ +<!doctype html> +<html> + <head> + <title>{% block title %}odfcast{% endblock %}</title> + </head> + <body> + <div id="content"> + {% block content %}{% endblock %} + </div> + </body> +</html>