Done blog post detail
[django-girls.git] / blog / templates / blog / base.html
diff --git a/blog/templates/blog/base.html b/blog/templates/blog/base.html
new file mode 100644 (file)
index 0000000..4603b49
--- /dev/null
@@ -0,0 +1,27 @@
+{% load staticfiles %}
+<!DOCTYPE html>
+<html>
+<head>
+       <title>Neil's blog</title>
+       <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
+       <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
+       <link href="//fonts.googleapis.com/css?family=Lobster&subset=latin,latin-ext" rel="stylesheet" type="text/css">
+       <link rel="stylesheet" href="{% static 'css/blog.css' %}">
+</head>
+
+
+<body>
+       <div class="page-header">
+               <h1><a href="/">Django Girls Blog</a></h1>
+       </div>
+       <div class="content container">
+               <div class="row">
+                       <div class="col-md-8">
+                               {% block content %}
+                               {% endblock %}
+                       </div>
+               </div>
+       </div>
+</body>
+
+</html>
\ No newline at end of file