34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title> LITReview </title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-SgOJa3DmI69IUzQ2PVdRZhwQ+dy64/BUtbMJw1MZ8t5HZApcHrRKUc4W0kG879m7" crossorigin="anonymous">
|
|
<style>
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav class="navbar navbar-expand-lg">
|
|
<div class="container-fluid border border-3 border-secondary-subtle">
|
|
<div class="col-6 d-flex justify-content-end ml-3">
|
|
<h1> LITReview </h1>
|
|
</div>
|
|
<div class="col-3 d-flex self-align-end">
|
|
{% if user.is_authenticated %}
|
|
{% include 'nav.html' %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
{% block content %}{% endblock %}
|
|
<footer>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|