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.
9 lines
332 B
9 lines
332 B
15 years ago
|
<!doctype html>
|
||
|
<title>Flask API Showcase</title>
|
||
|
<link rel=stylesheet href="{{ url_for('static', filename='style.css') }}" type=text/css>
|
||
|
<h1>Flask API Showcase</h1>
|
||
|
{% if request.endpoint != 'index' %}
|
||
|
<div class=backlink><a href="{{ url_for('index') }}">« back to index</a></div>
|
||
|
{% endif %}
|
||
|
{% block body %}{% endblock %}
|