Upload files to "templates"
This commit is contained in:
23
templates/windows.html
Normal file
23
templates/windows.html
Normal file
@ -0,0 +1,23 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h1>Windows Indicators of Compromise (IOCs)</h1>
|
||||
<p>Select a section to explore:</p>
|
||||
|
||||
<ul>
|
||||
{% for section in sections %}
|
||||
<li><a href="/windows/{{ section.title.replace(' ', '_') }}">{{ section.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% for section in sections %}
|
||||
{% if section.title == "Persistence Methods" %}
|
||||
<h2>{{ section.title }}</h2>
|
||||
<p>{{ section.content }}</p>
|
||||
<ul>
|
||||
{% for link in section.links %}
|
||||
<li><a href="{{ link.url }}">{{ link.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user