Skip to content
Snippets Groups Projects
Select Git revision
  • 48ce515dc09c8c6576be07a02aeee04b428a542b
  • develop default
  • master
3 results

layout.html

Blame
  • Forked from Hodor Security Project / Hodor Web Backend
    Source project has a limited visibility.
    layout.html 791 B
    <!doctype html>
        <head>
            <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css') }}">
            <title>Flask-MVC</title>
        </head>
        <body>    
            <a style="text-align:center" href="{{ url_for('start') }}">Home</a>
            <div class="page">
                <h1>Flask MVC Boilerplate</h1>
                {% for message in get_flashed_messages() %}
                    <div class="flash">{{ message }}</div>
                {% endfor %}
                {% macro render_error(field) %}
                    {% if field.errors %}
                        {% for error in field.errors %}<span class='error'>{{ error }}</span>{% endfor %}
                    {% endif %}
                {% endmacro %}
                {% block body %}{% endblock %}
            </div>
        </body>
    </html>