Upload files to "templates"
This commit is contained in:
42
templates/base.html
Normal file
42
templates/base.html
Normal 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>
|
Reference in New Issue
Block a user