Post adding and editing forms
[django-girls.git] / blog / templates / blog / base.html
1 {% load staticfiles %}
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <title>Neil's blog</title>
6 <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
7 <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
8 <link href="//fonts.googleapis.com/css?family=Lobster&subset=latin,latin-ext" rel="stylesheet" type="text/css">
9 <link rel="stylesheet" href="{% static 'css/blog.css' %}">
10 </head>
11
12
13 <body>
14 <div class="page-header">
15 {% if user.is_authenticated %}
16 <a href="{% url 'post_new' %}" class="top-menu"><span class="glyphicon glyphicon-plus"></span></a>
17 {% endif %}
18 <h1><a href="/">Django Girls Blog</a></h1>
19 </div>
20 <div class="content container">
21 <div class="row">
22 <div class="col-md-8">
23 {% block content %}
24 {% endblock %}
25 </div>
26 </div>
27 </div>
28 </body>
29
30 </html>