12 lines
248 B
HTML
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 %}
|