mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
339 B
12 lines
339 B
{% extends "layout.html" %} |
|
{% block body %} |
|
<p> |
|
This is an example application that shows how |
|
the Werkzeug powered Flask microframework works. |
|
<p> |
|
The various parts of the example application: |
|
<ul> |
|
<li><a href="{{ url_for('hello_user') }}">Hello World</a> |
|
<li><a href="{{ url_for('counter') }}">Counter</a> |
|
</ul> |
|
{% endblock %}
|
|
|