Upload files to "templates"

This commit is contained in:
2024-11-28 00:55:02 -05:00
parent 9f90266716
commit cc9de49dba
13 changed files with 246 additions and 0 deletions

42
templates/base.html Normal file
View File

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<header>
<nav>
<a href="/">Home</a>
<a href="/methodology">Methodology</a>
<div class="dropdown">
<a href="#">OS</a>
<div class="dropdown-content">
<a href="/windows">Windows</a>
<a href="/linux">Linux</a>
</div>
</div>
<div class="dropdown">
<a href="/investigate">Investigate</a>
<div class="dropdown-content">
<a href="/investigate/threat">Threat Intel</a>
<a href="/investigate/ip">IP</a>
<a href="/investigate/domain">Domain</a>
<a href="/investigate/filehash">File Hash</a>
<a href="/investigate/malware">Malware</a>
</div>
</div>
<a href="/rule_creation">Rule Creation</a>
<a href="/notebook">Notebook</a>
</nav>
</header>
<div class="tip">
{{ random_tip }}
</div>
<main class="main-content">
{% block content %}{% endblock %}
</main>
</body>
</html>