Mercurial > odfcast
diff 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 |
line wrap: on
line diff
--- a/templates/base.html Mon Sep 29 14:02:55 2014 +0200 +++ b/templates/base.html Mon Sep 29 14:17:41 2014 +0200 @@ -2,9 +2,13 @@ <html> <head> <title>{% block title %}odfcast{% endblock %}</title> + {% block css %} + <link rel="stylesheet" + href="{{ url_for('static', filename='css/bootstrap.min.css') }}"> + {% endblock %} </head> <body> - <div id="content"> + <div id="content" class="col-md-8"> {% block content %}{% endblock %} </div> </body>