blob: df3fdc5de3072775ba3b6b5aec585823b8b37287 (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
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
li(role='presentation'): a.btn-botleagues-login(href='#',title='Login') Login
h3 Botleagues
#messages
#login-block
form.form-inline#login-form
.form-group
label.control-label(for='login-email') Email:
input.form-control#login-email(type='email')
.form-group
label.control-label(for='login-password') Password:
input.form-control#login-password(type='password')
a.btn.btn-default#login-submit(href='#') Login
block content
footer.footer: :markdown
© [ViviSoft](http://vivisoft.nl/) 2015
include ./foot.jade
|