Files
Hunt-AI/templates/persistence_method.html

11 lines
238 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ content[0].title }}</h1>
{% for section in content %}
<div class="content-box">
<h2>{{ section.title }}</h2>
<pre>{{ section.content }}</pre>
</div>
{% endfor %}
{% endblock %}