soundbirder/views/layout.pug
2024-01-08 23:02:04 +01:00

32 lines
1.3 KiB
Plaintext
Executable File

doctype html
html
head
title= title
meta(name="viewport" content="width=device-width, initial-scale=1.0")
link(rel="stylesheet" href="/stylesheets/style.css")
link(rel="stylesheet" href="/stylesheets/game.css")
if csrf_token
meta(name="csrf-token" content=csrf_token)
body
.flex.flex-col.min-h-screen
.flex-1.p-5
nav
- var i18n_prefix = locale ? '/' + locale : ''
ul.flex.flex-row.text-center.justify-evenly
li
a(href=`${i18n_prefix}/`) #{ __('Game') }
li
a(href=`${i18n_prefix}/about`) #{ __('About') }
header
h1= title
main
block content
footer.w-full.bg-black.text-white.text-center.p-5
.description
.copyright
a(href="https://fsf.org/") 🄯
| 2022 -
span.author
a(href="https://samuel.ortion.fr" class="link") Samuel Ortion
script(src="/javascripts/app.js" type="module")
script(src="/dist/feather/feather.min.js")