mirror of https://github.com/CIRCL/lookyloo
16 lines
372 B
HTML
16 lines
372 B
HTML
{% extends "main.html" %}
|
|
|
|
{% block title %}Tree{% endblock %}
|
|
|
|
{% block content %}
|
|
<center>
|
|
<h2><a href="{{ url_for('scrape_web') }}">Scrape a page</a></h2></br></br>
|
|
</center>
|
|
<center>
|
|
{% for uuid, page_title in titles %}
|
|
<a href="{{ url_for('tree', tree_uuid=uuid) }}">{{ page_title }}</a></br>
|
|
</br>
|
|
{% endfor %}
|
|
</center>
|
|
{% endblock %}
|