soundbirder/views/layout.pug

26 lines
686 B
Plaintext
Raw Normal View History

2022-08-17 14:27:37 +02:00
doctype html
html
head
title= title
meta(name="iewport", content="width=device-width, initial-scale=1.0")
link(rel="stylesheet", href="/stylesheets/style.css")
2022-08-17 14:27:37 +02:00
body
header
h1= title
nav
ul
li
a(href="/") #{ __("Game") }
2022-08-17 14:27:37 +02:00
li
a(href="/about") #{ __("About") }
2022-08-17 14:27:37 +02:00
li
a(href="/contact") #{ __("Contact") }
main
block content
2022-08-17 14:27:37 +02:00
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")