8 lines
332 B
HTML
8 lines
332 B
HTML
<!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 %}
|