Mercurial > odfcast
comparison templates/base.html @ 17:75d5d18e7d52
Add bootstrap for css formating
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 14:17:41 +0200 |
parents | f4920ab1d27c |
children |
comparison
equal
deleted
inserted
replaced
16:f4920ab1d27c | 17:75d5d18e7d52 |
---|---|
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>{% block title %}odfcast{% endblock %}</title> | 4 <title>{% block title %}odfcast{% endblock %}</title> |
5 {% block css %} | |
6 <link rel="stylesheet" | |
7 href="{{ url_for('static', filename='css/bootstrap.min.css') }}"> | |
8 {% endblock %} | |
5 </head> | 9 </head> |
6 <body> | 10 <body> |
7 <div id="content"> | 11 <div id="content" class="col-md-8"> |
8 {% block content %}{% endblock %} | 12 {% block content %}{% endblock %} |
9 </div> | 13 </div> |
10 </body> | 14 </body> |
11 </html> | 15 </html> |