Initial checkin of stuff that exists so far.
This commit is contained in:
commit
33850c0ebd
15 changed files with 984 additions and 0 deletions
8
examples/apishowcase/templates/layout.html
Normal file
8
examples/apishowcase/templates/layout.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<!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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue