care-squad/templates/base.html
Irrlicht e07a0c9363 [style][content] Care Squad becomes Zorro Rennes, update colors, change font
- Font for the core text is now Bagnard https://open-foundry.com/fonts/bagnard_regular
- PCR tests information is moved to a separate page instead of the
  landing page
- Update the favicon and main logo to match the new identity
2025-09-14 22:02:42 +02:00

47 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Zorro Rennes - Mask bloc</title>
<link rel="icon" href="/favicon.svg" sizes="16x16 32x32 48x48 192x192" type="image/svg+xml">
<link rel="apple-touch-icon" type="image/svg+xml" sizes="60x60 72x72 76x76 114x114 120x120 144x144 152x152 167x167 180x180 1024x1024">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Irrlicht">
<meta property="og:locale" content="fr">
<meta property="og:site_name" content="Zorro Rennes">
<meta property="og:title" content="Zorro Rennes : mask bloc">
<link rel="preload" href="/assets/fonts/cooper-hewitt/CooperHewitt-Book.otf" as="font" type="font/otf" crossorigin="anonymous">
<link href="/assets/css/main.css" rel="stylesheet">
</head>
<body>
<header class="banner">
<div class="banner-title">
<div class="banner-title-part">
ZORRO
</div>
<div class="banner-logo">
<img src="/assets/images/zorro_masque.svg" alt="Zorro masqué avec son chapeau et un masque FFP2 en plus">
</div>
<div class="banner-title-part">
RENNES
</div>
</div>
<div class="banner-subtitle">
Il arrive toujours masqué !
</div>
</header>
<nav class="menu">
<ul>
<li><a href="{{ config.base_url }}">Accueil</a></li>
<li><a href="/test-pcr">Test PCR</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
<div class="content">
{% block content %} {% endblock content %}
</div>
</body>
</html>