view templates/base.html @ 29:1dadc59c4b9a

Make the conversion more error prone
author Björn Ricks <bjoern.ricks@intevation.de>
date Thu, 16 Oct 2014 10:03:32 +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>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)