homepage.js/view/layout/main.pug

61 lines
1.9 KiB
Plaintext

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')
head
title blek! Site #{title ? "- " + title : ""}
link(rel='stylesheet' href='/static/main.css')
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 <hr/>
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