53 lines
1.9 KiB
Text
53 lines
1.9 KiB
Text
include mixin
|
|
|
|
doctype html
|
|
html
|
|
head
|
|
title= title
|
|
link(rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons")
|
|
link(rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css")
|
|
link(rel="stylesheet" href="/stylesheets/style.css")
|
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
|
body
|
|
mixin nav
|
|
if user
|
|
if user.permissions >= 1
|
|
li: a(href="/sandwiches")=__("sandwiches")
|
|
if user.permissions >= 2
|
|
li: a(href="/orders")=__("orders")
|
|
if user.permissions >= 3
|
|
li: a(href="/admin")=__("admin.title")
|
|
li: a(href="/profile")=user.username
|
|
li: a(href="/logout")=__("layout.logout")
|
|
else
|
|
li: a(href="/login")=__("layout.login")
|
|
li: a(href="/register")=__("layout.register")
|
|
nav.orange(role="navigation")
|
|
div.nav-wrapper.container
|
|
a.brand-logo(href="/") SOD
|
|
a.sidenav-trigger(href="#" data-target="mobile-nav"): i.material-icons menu
|
|
ul.right.hide-on-med-and-down
|
|
+nav
|
|
ul#mobile-nav.sidenav
|
|
+nav
|
|
main
|
|
block content
|
|
|
|
if !test
|
|
p !{captcha}
|
|
|
|
footer.page-footer
|
|
div.container
|
|
div.row
|
|
div.col.l6.s12
|
|
h5.white-text=__("layout.links")
|
|
ul
|
|
li: a.grey-text.text-lighten-3(href="/about")=__("layout.about")
|
|
li: a.grey-text.text-lighten-3(href="/contact")=__("contact")
|
|
div.footer-copyright
|
|
div.container
|
|
a.grey-text.text-lighten-4(href="https://sapinet.fr" target="_blank")=__("layout.powered") + " Sapinet"
|
|
a.grey-text.text-lighten-4.right(href="https://www.linkedin.com/in/florian-charlaix" target="_blank")=__("layout.made") + " Florian Charlaix"
|
|
|
|
script(src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js")
|
|
script(src="/javascripts/layout.js")
|