Leviathan/views/layouts/default.twig

22 lines
715 B
Twig
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{% block title %}{% endblock %} | Leviathan</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
2023-11-26 01:23:30 -05:00
<link rel="stylesheet" href="/css/eye.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" charset="utf-8"></script>
</head>
<body>
{% include 'partials/navbar.twig' %}
2023-11-26 01:23:30 -05:00
<div id="main-content" class="container">
{% block content %}{% endblock %}
</div>
{% include 'partials/footer.twig' %}
</body>
</html>