forked from zer.ooo/web
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
Twig
47 lines
1.2 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ title ?? "Zer.ooo - What is InfoSec?" }}</title>
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{% block head %}
|
|
<script src="/js/jquery.min.js"></script>
|
|
<script src="/js/bootstrap.js"></script>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="flexcontainer">
|
|
|
|
<div class="first-page">
|
|
<div class="logo">zer.ooo
|
|
|
|
</div>
|
|
<div class="welcome-text">what even is infosec?</div>
|
|
|
|
<ul class="topnav">
|
|
{% if user %}
|
|
<li><a href="/logout">Logout</a></li>
|
|
<li><a href="/panel">Control Panel</a></li>
|
|
{% else %}
|
|
<li><a href="/login">Login</a></li>
|
|
<li><a href="/login">Register</a></li>
|
|
{% endif %}
|
|
<li class="icon">
|
|
<a href="javascript:void(0);" onclick="myFunction()">☰</a>
|
|
</li>
|
|
</ul>
|
|
<script>
|
|
function myFunction() {
|
|
document.getElementsByClassName("topnav")[0].classList.toggle("responsive");
|
|
}
|
|
</script>
|
|
|
|
</div>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|