Upload files to "templates"
This commit is contained in:
@ -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 %}
|
||||
|
Reference in New Issue
Block a user