mirror of
https://github.com/0xMarcio/cve.git
synced 2026-02-12 18:42:46 +00:00
17 lines
450 B
HTML
17 lines
450 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ title or 'CVE PoC Hub' }}</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body class="{{ body_class or '' }}">
|
|
<main class="wrap">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% block extra_scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|