diff options
author | Helmut Grohne <helmut@subdivi.de> | 2013-02-21 15:26:24 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2013-02-21 15:26:24 +0100 |
commit | de024bc937f4b8b326616df76c8a64878a235c91 (patch) | |
tree | 434b80b902ab165ac4f1b7170856285e00fc2ff1 /base.html | |
parent | 7930c16cacf26bc8f3eba81e6829be0964907717 (diff) | |
download | debian-dedup-de024bc937f4b8b326616df76c8a64878a235c91.tar.gz |
added a base template to the webapp
Diffstat (limited to 'base.html')
-rw-r--r-- | base.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/base.html b/base.html new file mode 100644 index 0000000..65bc6df --- /dev/null +++ b/base.html @@ -0,0 +1,10 @@ +<html> + <head> + <title>{% block title %}{% endblock %}</title> + {% block header %}{% endblock %} + </head> + <body> +{% block content %} +{% endblock %} + </body> +</html> |