soundbirder/views/layout.pug

30 lines
1.2 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 Copyright © 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")