wundertile/app/templates/index.html
2019-04-24 17:51:45 +02:00

12 lines
248 B
HTML

{% extends 'base.html' %}
{% block body %}
<h1>Wundertile - This is home page</h1>
<a href="{{ url_for('tiles.upload') }}">Upload</a><br>
<div id="map"></div>
<script src="{{ url_for('static', filename='bundle.js') }}"></script>
{% endblock %}