27 lines
914 B
Plaintext
27 lines
914 B
Plaintext
doctype html
|
|
html
|
|
head
|
|
title= title
|
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
|
link(rel="stylesheet" href="/stylesheets/style.css")
|
|
if csrf_token
|
|
meta(name="csrf-token" content=csrf_token)
|
|
body
|
|
header
|
|
h1= title
|
|
nav
|
|
- var i18n_prefix = locale ? '/' + locale : ''
|
|
ul
|
|
li
|
|
a(href=`${i18n_prefix}/`) #{ __("Game") }
|
|
li
|
|
a(href=`${i18n_prefix}/about`) #{ __("About") }
|
|
main
|
|
block content
|
|
footer
|
|
.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") |