Skip to content
Snippets Groups Projects
Select Git revision
  • 613078f3b1d1145bac6060a775d1872f199107dc
  • master default
  • add-license-1
  • 6.2
  • 6.0
  • 5.3b
  • 5.1
  • 4.12
  • 4.4
  • 4.3
10 results

build.gradle

Blame
  • layout.html 865 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>
            <a style="text-align:center" href="http://salimane.com">About</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>