Skip to content
Snippets Groups Projects
Select Git revision
  • 6305c9737423c6c47010a24d62fad5d57273260f
  • master default protected
2 results

lineclipping.c

Blame
  • 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>