summaryrefslogtreecommitdiffstats
path: root/protoype/views/index.jade
blob: 5434677f68e75dfac1d527cce9da28d9afbe190d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
extends layout

block content
    h2(style='border-bottom: dashed #FF9900; letter-spacing: -2px')= title
    p
      | Welcome to #{title}. Find your opponent, and get ready!<br />
      | <br />Create new user: 
      a(href='/create') create
      | <br />Login: 
      a(href='/login') login
    h4(style='background-color: #99FF66; padding: 2px') User List

    - each user in users
      #listentry <u>#{user.tag}</u> >> #{user.location.loc} | 
        - if (user.status == 'online')
          span(style='color: green; font-weight: bold')= user.status
        - else
          span(style='color: red; font-weight: bold')= user.status
        | <br />#{user.vehicle.year} #{user.vehicle.make} #{user.vehicle.model}
        | <br />mods: #{user.vehicle.desc}<br />
        span(style='color: gray; font-style: italic')= user.userinfo.sig