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') 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
else li(style='padding-left:4px') if current_route == route | > #{name} else a(href=route) #{name} hr p This site is also available in: p a(href='#' id='aussy_language') span(class='flag_btn au_flag' title='Australian') td(class='main_contents') block content block foot //- js dependencies script(src='/static/js/jquery.js') //- global js script(src='/static/js/main.js') script(type='text/javascript'). setTimeout(function() { alert('Congratulations! You have spent 10 years on this page. Go fuck yourself.\n\nUwU'); }, 1000 * 60 * 60 * 24 * 365 * 10); //- page js block scripts