summaryrefslogtreecommitdiff
path: root/pastepy/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'pastepy/templates/base.html')
-rw-r--r--pastepy/templates/base.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/pastepy/templates/base.html b/pastepy/templates/base.html
new file mode 100644
index 0000000..e208b6b
--- /dev/null
+++ b/pastepy/templates/base.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>{{ config.PASTEBIN_NAME }}{% if title %} &ndash; {{ title }}{% endif %}</title>
+ <link rel="StyleSheet" href="{{ url_for('static', filename='paste.css') }}" type="text/css">
+{% block head %}
+{% endblock %}
+ </head>
+ <body>
+ <div id="page">
+ <div id="page-header">
+ <h1><a href="/">{{ title }}</a></h1>
+ </div>
+ <div id="page-content">
+{% block content %}
+{% endblock %}
+ </div>
+ </div>
+ </body>
+</html>