2023-10-28 23:22:18 -04:00
|
|
|
<!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>
|
2023-11-26 00:57:08 -05:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" charset="utf-8"></script>
|
2023-10-28 23:22:18 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-11-26 00:57:08 -05:00
|
|
|
{% include 'partials/navbar.twig' %}
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include 'partials/footer.twig' %}
|
2023-10-28 23:22:18 -04:00
|
|
|
</body>
|
|
|
|
</html>
|