aboutsummaryrefslogtreecommitdiff
path: root/src/include/layout-loggedin.jade
blob: fca8c17e4164e79e620551870610330ce74df464 (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
doctype html
html(lang="en")
  head
    include ./head.jade
    
  body
    .container

      block menu
        -var selected = '/profile'; //default

      -var menu = { 'Home': '/', 'Leagues': '/leagues', 'My Bots': '/profile/bots', 'Profile': '/profile' };

      .header.clearfix
        nav: ul.nav.nav-pills.pull-right#nav
          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#banner Botleagues

      #messages

      block content

      footer.footer: :markdown
        © [ViviSoft](http://vivisoft.nl/) 2015

    include ./foot.jade

    block js