summaryrefslogtreecommitdiffstats
path: root/protoype/views/index.jade
blob: cfbdb8011fe908f80d93a836e9009c682daa0a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
h1= title
p Welcome to #{title}.

h3 User list:
ul
  - each user in users
    li= user.tag
    - if (user.status == 'online')
      span(style='color: green')= user.status
    - else
      span(style='color: red')= user.status