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.
25 lines
701 B
25 lines
701 B
13 years ago
|
<!doctype html>
|
||
|
<title>Simple Page Blueprint</title>
|
||
|
<div class=page>
|
||
|
<h1>This is blueprint example</h1>
|
||
|
<p>
|
||
|
A simple page blueprint is registered under / and /pages<br/>
|
||
|
you can access it using this urls:
|
||
|
<ul>
|
||
|
<li><a href="{{ url_for('simple_page.show', page='hello') }}">/hello</a></li>
|
||
|
<li><a href="{{ url_for('simple_page.show', page='world') }}">/world</a></li>
|
||
|
</ul>
|
||
|
</p>
|
||
|
<p>
|
||
|
Also you can register the same blueprint under another path
|
||
|
<ul>
|
||
|
<li><a href="/pages/hello">/pages/hello</a></li>
|
||
|
<li><a href="/pages/world">/pages/world</a></li>
|
||
|
</ul>
|
||
|
</p>
|
||
|
|
||
|
|
||
|
|
||
|
{% block body %}
|
||
|
{% endblock %}
|
||
|
</div>
|