blob: 72331eebb3a0de579bc5955c0a6dc069c88cda8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
doctype html
html(lang="en")
head
include ./head.jade
body
.container
block menu
-var selected = '/'; //default
-var menu = { 'Home': '/', 'About': '/about', 'Contact': '/contact' };
.header.clearfix
nav: ul.nav.nav-pills.pull-right
each val, key in menu
if selected === val
li.active(role='presentation'): a(href=val,title=key)= key
else
li(role='presentation'): a(href=val,title=key)= key
h3 Botleagues
#messages
block content
footer.footer: :markdown
© [ViviSoft](http://vivisoft.nl/) 2015
include ./foot.jade
|