block root - let routes = { "Main page": '/', "Projects": "/project", "About me": "/about", "hr_1": "hr", "Guestbook": "/guestbook", "Articles": "/articles", "hr_2": "hr", "Sources": "/sources" } doctype html html(style='overflow-y:auto' lang='en_US') head title blek! Site #{title ? "- " + title : ""} link(rel='stylesheet' href='/static/main.css') //- basic SEO tags if (typeof description == 'string') meta(name='description' content=description) //- Open Graph tags if (typeof og == 'object') each content, tag in og meta(property='og:' + tag content=content) //- UX meta(name='viewport' content='width=device-width, initial-scale=1') block head body(style='overflow-y:auto') if (process.env.APP_DEBUG == 'true') p(style='color:darkred;font-weight:bold;font-size:16pt;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;pointer-events:none;opacity:0.25') | Warning: THE WEBSITE IS IN DEBUG MODE! br | If the site is running in production, please br | contact the maintainer and notify them of the issue. table(width='100%' height='100%' class='body_table') tr td(class='side_menu') h1 a(href='/') blek! Site hr(class='flag_hr') ul each route, name in routes if (route == 'hr') li