diff options
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..98eef27 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,12 @@ +<!doctype html> +<html> + <head> + <title>{{ the_title }}</title> + <link rel="stylesheet" href="static/hf.css" /> + </head> + <body> + {% block body %} + + {% endblock %} + </body> +</html> |
