Files
expressjs.com/2x/examples/github/views/index.jade
2014-09-17 23:50:47 +05:30

14 lines
378 B
Plaintext

extends layout
block content
each user in users
.user
h2= user.name
p.summary
| <a href="http://github.com/#{user.name}">#{user.name}</a> has
| <strong>#{user.repos.length}</strong> repositories
| with a total of <strong>#{user.totalWatchers}</strong> watchers.
table#repos
for repo in user.repos
include repo