Browse Source

Removed unnecessary end-tags and fixed some broken html

pull/654/head
Armin Ronacher 12 years ago
parent
commit
61d43c7f12
  1. 4
      examples/blueprintexample/simple_page/templates/pages/hello.html
  2. 4
      examples/blueprintexample/simple_page/templates/pages/index.html
  3. 31
      examples/blueprintexample/simple_page/templates/pages/layout.html
  4. 5
      examples/blueprintexample/simple_page/templates/pages/world.html
  5. 2
      examples/flaskr/templates/login.html

4
examples/blueprintexample/simple_page/templates/pages/hello.html

@ -1,5 +1,5 @@
{% extends "pages/layout.html" %}
{% block body %}
Hello
{% endblock %}
Hello
{% endblock %}

4
examples/blueprintexample/simple_page/templates/pages/index.html

@ -1,5 +1,5 @@
{% extends "pages/layout.html" %}
{% block body %}
Blueprint example page
{% endblock %}
Blueprint example page
{% endblock %}

31
examples/blueprintexample/simple_page/templates/pages/layout.html

@ -3,23 +3,18 @@
<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>
A simple page blueprint is registered under / and /pages
you can access it using this urls:
<ul>
<li><a href="{{ url_for('simple_page.show', page='hello') }}">/hello</a>
<li><a href="{{ url_for('simple_page.show', page='world') }}">/world</a>
</ul>
<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>
Also you can register the same blueprint under another path
<ul>
<li><a href="/pages/hello">/pages/hello</a>
<li><a href="/pages/world">/pages/world</a>
</ul>
{% block body %}
{% endblock %}
</div>
{% block body %}{% endblock %}
</div>

5
examples/blueprintexample/simple_page/templates/pages/world.html

@ -1,5 +1,4 @@
{% extends "pages/layout.html" %}
{% block body %}
World
{% endblock %}
World
{% endblock %}

2
examples/flaskr/templates/login.html

@ -1,7 +1,7 @@
{% extends "layout.html" %}
{% block body %}
<h2>Login</h2>
{% if error %}<p class=error><strong>Error:</strong> {{ error }}</p>{% endif %}
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
<form action="{{ url_for('login') }}" method=post>
<dl>
<dt>Username:

Loading…
Cancel
Save