summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'nfsw/templates/base.html')
-rw-r--r--nfsw/templates/base.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/nfsw/templates/base.html b/nfsw/templates/base.html
new file mode 100644
index 0000000..008916d
--- /dev/null
+++ b/nfsw/templates/base.html
@@ -0,0 +1,16 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <title>{% block title %}{% endblock %} - NFSW</title>
+ <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
+ <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
+ </head>
+ <body>
+ <script src="{{ url_for('static', filename='jquery.js') }}"></script>
+ <script src="{{ url_for('static', filename='nfsw.js') }}"></script>
+
+ <section class="content">
+ {% block content %}{% endblock %}
+ </section>
+ </body>
+</html>