diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..196a03e --- /dev/null +++ b/templates/base.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>{{ title }}</title> + <link rel="StyleSheet" href="/static/paste.css" type="text/css"> +{% block head %} +{% endblock %} + </head> + <body> + <div id="page"> + <div id="page-header"> + <h1><a href="/">{{ header }}</a></h1> + </div> + <div id="page-content"> +{% block content %} +{% endblock %} + </div> + </div> + </body> +</html> |