block root - let routes = { "Main page": '/', "Projects": "/project", "About me": "/about", "hr_1": "hr", "Guestbook": "/guestbook", "Articles": "/articles", "hr_2": "hr", "Sources": "/sources", "Services": "/services", "Resume": "/resume" } 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') if (process.env.APP_DEBUG == 'true') style. .debug_warning { margin:0;padding:0; 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.4; text-shadow:0 2px 1px #a07060a0 } block head body(style='overflow-y:auto') if (process.env.APP_DEBUG == 'true') p(class='debug_warning') | Warning: THE WEBSITE IS IN DEBUG MODE! br | If the site is not currently running locally, please br | contact the maintainers 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