{# UGE / L2 / Intro to relational databases / Python project prototype Author: Pacien TRAN-GIRARD Licence: EUPL-1.2 #} {% import '_fragments.html.jinja' as fragments %} <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" type="image/svg+xml" href="/images/favicon.svg"> {% block headers %} <link rel="stylesheet" href="/stylesheets/pure-min.css"> <link rel="stylesheet" href="/stylesheets/grids-responsive-min.css"> <link rel="stylesheet" href="/stylesheets/main.css"> <link rel="stylesheet" href="/stylesheets/pepal.css"> <title>{% block title %}{% endblock %} - PèPal</title> {% endblock %} </head> <body> <div class="page"> <header> <div class="pure-g"> <div class="branding pure-u-1 pure-u-md-1-2"> <h1><a href="/">{{ fragments.logo() }}</a></h1> </div> <div class="account-info pure-u-1 pure-u-md-1-2"> {{ fragments.user_header(user) if user is not none }} </div> </div> </header> <div class="flash-message"> {% block flash_messages %} {{ fragments.flash_messages(messages) }} {% endblock %} </div> <div class="content"> {% block content %}{% endblock %} </div> <footer> <span class="copyright"> © 2021 {{ fragments.logo() }} Inc. Too many rights reserved. </span> </footer> </div> </body> </html>