Mercurial > odfcast
view templates/base.html @ 26:26e6f2f00638
We need a pyuno version >0.2 and pypdf2 now
pyuno 0.2 has a bug running the python module from pyc instead of py file.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 16:19:05 +0200 |
parents | 75d5d18e7d52 |
children |
line wrap: on
line source
<!doctype html> <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" class="col-md-8"> {% block content %}{% endblock %} </div> </body> </html>