diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-29 14:54:38 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-29 14:54:38 +0100 |
commit | 7163dfa3d0252067de90e8c088ea90d0b0f7d059 (patch) | |
tree | 11fa27982ff2c328435a128df3a8ab44b25593f7 /cherry_lesana/data/templates/base.html | |
parent | a5fbd781ccc9b64483cc499c375fa6e0e99ade1d (diff) |
Load a collection from command line and show a list of items
Diffstat (limited to 'cherry_lesana/data/templates/base.html')
-rw-r--r-- | cherry_lesana/data/templates/base.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cherry_lesana/data/templates/base.html b/cherry_lesana/data/templates/base.html new file mode 100644 index 0000000..232a76e --- /dev/null +++ b/cherry_lesana/data/templates/base.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <title>{% block title %}{% endblock %}</title> + <link rel="stylesheet" href="/static/style.css" /> + {% block head %} + {% endblock %} + </head> + <body> + <div id="content">{% block content %}{% endblock %}</div> + <div id="footer"> + </div> + </body> +</html> |