diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-05-16 15:25:52 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-05-16 15:25:52 +0200 |
commit | 0662cca6df84163cf714ada3a8ef2dc095d550e9 (patch) | |
tree | 042b8a3cac9a25bb14a175391031ae1667e3ec08 /src/_layout.pug | |
parent | b8a2463aca292b631692c1ec6e54753b88c8bd9b (diff) | |
download | site-0662cca6df84163cf714ada3a8ef2dc095d550e9.tar.gz site-0662cca6df84163cf714ada3a8ef2dc095d550e9.zip |
WIP site web
Diffstat (limited to 'src/_layout.pug')
-rw-r--r-- | src/_layout.pug | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/_layout.pug b/src/_layout.pug index 6dc80a1..1d0de5d 100644 --- a/src/_layout.pug +++ b/src/_layout.pug @@ -8,30 +8,31 @@ block root link(rel="stylesheet", href="/css/main.css") meta(name="viewport", content="width=device-width, initial-scale=1.0") body - 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") + 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(src="/img/flower.svg", width="40") - | - img(src="/img/flower.svg", width="40") - +menu(root, element) + h1 + a(href="/") deuxfleurs + nav.computer_block + section.center + img(src="/img/flower.svg", width="40") + | + img(src="/img/flower.svg", width="40") + +menu(root, element) main block content - footer + script. (_ => { const hamburger = document.getElementById('menu') hamburger.onclick = _ => { - const nav = document.querySelector('body > header > nav') + const nav = document.querySelector('body > aside > header > nav') console.log(nav.style.display) nav.style.display = nav.style.display != 'block' ? 'block' : 'none' } |