lookyloo/website/web/templates/index.html

16 lines
372 B
HTML
Raw Normal View History

2017-07-23 19:56:51 +02:00
{% extends "main.html" %}
{% block title %}Tree{% endblock %}
{% block content %}
<center>
<h2><a href="{{ url_for('scrape_web') }}">Scrape a page</a></h2></br></br>
2017-07-23 19:56:51 +02:00
</center>
<center>
{% for uuid, page_title in titles %}
<a href="{{ url_for('tree', tree_uuid=uuid) }}">{{ page_title }}</a></br>
2017-07-23 19:56:51 +02:00
</br>
{% endfor %}
</center>
{% endblock %}