Files
devopsexam/templates/index.html
2017-07-01 18:37:53 +08:00

8 lines
318 B
HTML

{% extends "layout.html" %}
{% block page_title %}Welcome to Flask Example{% endblock %}
{% block body %}
{{ super() }}
<p>In this example, we cover concepts including: </p>
<p>template (inheritance), URL building, redirecting, error handeling, session management (authentication), etc.</p>
{% endblock %}