You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
248 B
HTML
12 lines
248 B
HTML
6 years ago
|
{% 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 %}
|