Files
Hunt-AI/templates/investigate.html

11 lines
277 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ content.title }}</h1>
<p>{{ content.description }}</p>
<ul>
{% for resource in content.resources %}
<li><a href="{{ resource.url }}" target="_blank">{{ resource.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}