mirror of https://github.com/CIRCL/lookyloo
17 lines
379 B
HTML
17 lines
379 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 %}
|