summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html27
-rw-r--r--templates/index.html4
2 files changed, 31 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..be8e5ed
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,27 @@
+<!doctype html>
+<html>
+<head>
+ <meta charset="utf-8">
+
+ <title>[Title]</title>
+
+ <meta name="description" content="">
+ <meta name="keywords" content="">
+ <meta name="author" content="">
+
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="robots" content="all">
+
+ <link rel="canonical" href="">
+
+ <link rel="stylesheet" href="/static/css/bootstrap.min.css" type="text/css">
+ <link rel="stylesheet" href="/static/css/main.css" type="text/css">
+</head>
+
+<body lang="en">
+ <div id="main" class="container" role="main">
+ {% block content %}
+ {% endblock %}
+ </div>
+</body>
+</html>
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..357a399
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,4 @@
+{% extends 'base.html' %}
+
+{% block content %}
+{% endblock %}