igdb/code/app/templates/data.html

16 lines
331 B
HTML
Raw Normal View History

2020-01-09 08:06:18 +01:00
{% extends "base.html" %}
{% block content %}
2020-01-09 19:13:24 +01:00
<h1 class="text-center">What do you want to check out?</h1>
<li>
<p class="text-center">
<a href="{{ url_for('table_selection') }}">Tables</a>
</p>
</li>
<li>
<p class="text-center">
<a href="{{ url_for('plots') }}">Plots</a>
</p>
</li>
2020-01-09 08:06:18 +01:00
{% endblock %}