57 lines
2.7 KiB
HTML
57 lines
2.7 KiB
HTML
{% from "layout/menu.html" import menu %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block head %}
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block title %}{% endblock %} - Adog a pet</title>
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous" defer></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<header class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-9 col-sm-10 col-md-2">
|
|
<img alt="A dog a pet logo" src="{{url_for('static', filename='img/adogapetlogo.png')}}">
|
|
</div>
|
|
<div class="col-3 col-sm-2 col-md-10 col-lg-8">
|
|
<nav class="navbar navbar-expand-md h-100 justify-content-center">
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse text-center">
|
|
{{ menu(ROUTES, "desktop") }}
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
{% if not session["id"] %}
|
|
<div class="col-md-2 d-none d-lg-flex align-items-center justify-content-center">
|
|
<a type="button" class="btn btn-primary w-75" href="{{ROUTES['users']['login']}}" >Log In</a>
|
|
</div>
|
|
{% else %}
|
|
<div class="col-md-2 d-none d-lg-flex align-items-center justify-content-center">
|
|
<a type="button" class="btn btn-danger w-75" href="{{ROUTES['users']['logout']}}" >Log Out</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div>
|
|
<div class="collapse navbar-collapse text-center d-md-none" id="navbarSupportedContent">
|
|
{{ menu(ROUTES, "movil") }}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div id="content" class="content">{% block content %}{% endblock %}</div>
|
|
<div id="footer" class="footer">
|
|
{% block footer %}
|
|
© Copyright 2010 by <a href="http://domain.invalid/">you</a>.
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|