Upload files to "templates"

This commit is contained in:
2024-11-28 01:37:55 -05:00
parent 53bc394f04
commit 63fcf62537

View File

@ -1,5 +1,18 @@
{% extends "base.html" %}
{% block content %}
<h1>Rule Creation</h1>
<p>Track and manage your custom detection and prevention rules here.</p>
<h1>Rule Creation Resources</h1>
{% for section in content %}
<div class="content-box">
<h2>{{ section.title }}</h2>
<p>{{ section.content }}</p>
<ul>
{% for link in section.links %}
<li><a href="{{ link.url }}" target="_blank">{{ link.name }}</a></li>
{% endfor %}
</ul>
</div>
<hr>
{% endfor %}
{% endblock %}