Ooooooook good !

This commit is contained in:
2026-01-31 16:16:06 +01:00
parent 8d0586cfb4
commit a98c23ed1d
20 changed files with 1439 additions and 50 deletions

View File

@ -14,6 +14,22 @@
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
<title>{{ title ?? site:name }}</title>
<meta name="title" content="{{ title ?? site:name }}">
<meta name="description" content="{{ hfs:description }}" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://summer.hfsplay.fr/">
<meta property="og:title" content="{{ title ?? site:name }}">
<meta property="og:description" content="{{ hfs:description }}">
<meta property="og:image" content="{{ glide:hfs:image fm="webp" }}">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://summer.hfsplay.fr/">
<meta property="twitter:title" content="{{ title ?? site:name }}">
<meta property="twitter:description" content="{{ hfs:description }}">
<meta property="twitter:image" content="{{ glide:hfs:image fm="webp" }}">
</head>
<body>
<nav id="nav" class="navbar is-fixed-top p-5 has-text-primary" role="navigation" aria-label="main navigation">
@ -42,7 +58,7 @@
</div>
<div class="navbar-end">
<a class="navbar-item button is-rounded has-text-primary" href="{{ hfs:lien_billetterie }}" target="_blank">
<a class="navbar-item button is-medium is-rounded has-text-primary" href="{{ hfs:lien_billetterie }}" target="_blank">
Billetterie
</a>
</div>
@ -52,19 +68,23 @@
<footer class="footer has-background-black">
<div class="grid is-col-min-9">
<div class="cell has-text-centered has-text-primary">
<a class="footer-logo has-text-primary" href="https://www.hfsplay.fr" target="_blank">
<div class="cell has-text-centered has-text-primary mb-3">
<a class="footer-logo has-text-primary mb-3" href="https://www.hfsplay.fr" target="_blank">
<img src="/assets/logo2.svg" alt="" style="width:3rem;" class="px-2">
<div class="is-size-3 has-text-weight-bolder px-2">HFS PLAY</div>
</a>
<p class="has-text-grey">
Une association d'entraide communautaire autour de l'arcade et aussi une association délivrant du love.
</p>
</div>
<div class="cell"></div>
<div class="cell">
<ul>
{{ nav:main }}
<li><a href="{{ url }}">{{ title }}</a></li>
{{ /nav:main }}
</ul>
<div class="cell has-text-centered">
<h3 class="has-text-primary mb-3 is-size-3">FOLLOW US ON</h3>
<div class="links">
<a class="button is-primary is-outlined mr-1" href="https://bsky.app/profile/hfsplay.bsky.social" target="_blank">BLUESKY</a>
<a class="button is-primary is-outlined mr-1" href="https://fr-fr.facebook.com/HFSPlay/" target="_blank">FACEBOOK</a>
<a class="button is-primary is-outlined poop mr-1" href="https://x.com/HFSplay" target="_blank">X</a>
</div>
</div>
</div>
</footer>
@ -73,6 +93,6 @@
<script src="/assets/js/main.js"></script>
{{# {{ vite src="public/assets/js/main.js|public/assets/css/site.css" }} #}}
{{# {{ vite src="resources/js/site.js|resources/css/site.css" }} #}}
{{ vite src="resources/js/site.js|resources/css/site.css" }}
</html>