2020-04-18 10:00:23 +00:00
|
|
|
include _mixin/menu.pug
|
2022-05-13 06:13:37 +00:00
|
|
|
|
2020-03-01 21:17:44 +00:00
|
|
|
block root
|
|
|
|
doctype html
|
2022-05-13 06:13:37 +00:00
|
|
|
html(lang="fr")
|
|
|
|
head
|
|
|
|
meta(charset='utf-8')
|
|
|
|
title 💮💮 deuxfleurs - #{title}
|
|
|
|
link(rel="stylesheet", href="/css/main.css")
|
|
|
|
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
|
|
|
body
|
|
|
|
aside
|
|
|
|
header
|
|
|
|
a#menu(href="#").mobile_inline
|
|
|
|
svg(viewBox="0 0 100 80", width="40", height="40")
|
|
|
|
rect(width="100", height="20")
|
|
|
|
rect(y="30" width="100" height="20")
|
|
|
|
rect(y="60" width="100" height="20")
|
|
|
|
|
|
|
|
h1
|
|
|
|
a(href="/") deuxfleurs
|
|
|
|
nav.computer_block
|
|
|
|
section.center
|
|
|
|
img(alt="emoji fleur", src="/img/flower.svg", width="40")
|
|
|
|
|
|
|
|
|
img(alt="emoji fleur", src="/img/flower.svg", width="40")
|
|
|
|
ul
|
|
|
|
li
|
|
|
|
a(href="https://plume.deuxfleurs.fr/timeline/1") Actualités
|
|
|
|
li
|
2022-05-13 07:35:14 +00:00
|
|
|
a(href="https://man.deuxfleurs.fr") Wiki
|
2022-05-13 06:13:37 +00:00
|
|
|
li
|
|
|
|
a(href="https://guichet.deuxfleurs.fr") Mon compte
|
|
|
|
hr
|
|
|
|
+menu(root, element)
|
|
|
|
|
|
|
|
main
|
|
|
|
block content
|
|
|
|
|
|
|
|
script.
|
|
|
|
(_ => {
|
|
|
|
const hamburger = document.getElementById('menu')
|
|
|
|
hamburger.onclick = _ => {
|
|
|
|
const nav = document.querySelector('body > aside > header > nav')
|
|
|
|
console.log(nav.style.display)
|
|
|
|
nav.style.display = nav.style.display != 'block' ? 'block' : 'none'
|
|
|
|
}
|
|
|
|
})()
|