aboutsummaryrefslogblamecommitdiff
path: root/src/_layout.pug
blob: b72eb1578511664630cf1d121f3d9adca1853e95 (plain) (tree)
1
2
3
4
5
6
7
8

                       




                                        
                                                










                                                                          



                                              


                        
        










                                                                             
include _mixin/menu.pug

block root
  doctype html
  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
    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
      section.center
        img(src="/img/flower.svg", width="40")
        | 
        img(src="/img/flower.svg", width="40")
      nav.computer_block
        +menu(root)
        
    main
      block content
    footer
    script.
      (_ => {
        const hamburger = document.getElementById('menu')
        hamburger.onclick = _ => {
          const nav = document.querySelector('body > header > nav')
          console.log(nav.style.display)
          nav.style.display = nav.style.display != 'block' ? 'block' : 'none'
        }
      })()