summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2012-08-16 20:18:52 +0300
committerYuval Adam <yuv.adm@gmail.com>2012-08-16 20:18:52 +0300
commitbc11283c5c80701fd28ee7fdd936ff78794bf1fb (patch)
treeebfee8e0c50e29b49c4f13f6900d90faf71309fc /templates/base.html
initial commit
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html27
1 files changed, 27 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>