forked from GitHub/dbot
merge tmenari
This commit is contained in:
commit
bc124e50c5
@ -38,9 +38,24 @@ var pages = function(dbot) {
|
||||
}
|
||||
});
|
||||
|
||||
var nicks = [];
|
||||
for (var p in profiles) {
|
||||
if (profiles.hasOwnProperty(p) && profiles[p].profile.avatar) {
|
||||
nicks.push(p);
|
||||
}
|
||||
}
|
||||
nicks.sort(function(a, b) {
|
||||
var x = profiles[a].profile.primary.toLowerCase();
|
||||
var y = profiles[b].profile.primary.toLowerCase();
|
||||
if(x > y) return 1;
|
||||
if(x < y) return -1;
|
||||
return 0;
|
||||
});
|
||||
|
||||
res.render('profile_grid', {
|
||||
'name': dbot.config.name,
|
||||
'connection': connection,
|
||||
'nicks': nicks,
|
||||
'profiles': profiles,
|
||||
});
|
||||
}
|
||||
|
@ -53,7 +53,7 @@ block content
|
||||
if profile.avatar
|
||||
img.profile_avatar.img-polaroid(src="#{profile.avatar}")
|
||||
else
|
||||
img.profile_avatar(src="http://placehold.it/270x180&text=Hello,%20World")
|
||||
img.profile_avatar.img-polaroid(src="http://placehold.it/270x180&text=Hello,%20World")
|
||||
div.span9
|
||||
h4 Bio
|
||||
p #{profile.bio}
|
||||
|
@ -18,10 +18,9 @@ block content
|
||||
a(href='../connections') « Connections
|
||||
|
||||
ul.thumbnails
|
||||
each profile, key in profiles
|
||||
if profile.hasOwnProperty('profile') && profile.profile.avatar
|
||||
li.span2
|
||||
a.thumbnail(href='/profile/'+connection+'/'+encodeURIComponent(key))
|
||||
div.imgwrap
|
||||
img(src="#{profile.profile.avatar}", alt="#{key}'s photo")
|
||||
span.nicks #{profile.profile.primary}
|
||||
each nick in nicks
|
||||
li.span2
|
||||
a.thumbnail(href='/profile/'+connection+'/'+encodeURIComponent(nick))
|
||||
div.imgwrap
|
||||
img(src="#{profiles[nick].profile.avatar}", alt="#{profiles[nick].profile.primary}'s photo")
|
||||
span.nicks #{profiles[nick].profile.primary}
|
||||
|
Loading…
Reference in New Issue
Block a user