dbot/views/profile/profile_grid.jade

24 lines
720 B
Plaintext
Raw Normal View History

2013-01-24 01:02:50 +00:00
extends ../layout
block content
2013-01-24 21:49:16 +00:00
script(src='http://masonry.desandro.com/jquery.masonry.min.js')
2013-01-24 21:46:42 +00:00
script
var $container = $('.thumbnails');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector : '.item',
columnWidth : 240
});
});
2013-01-24 01:06:05 +00:00
div.page-header.profile_page-header
h1
#{connection}
2013-01-24 19:39:28 +00:00
ul.thumbnails
2013-01-24 01:06:05 +00:00
each profile, key in profiles
if profile.hasOwnProperty('profile') && profile.profile.avatar
2013-01-24 19:39:28 +00:00
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}