dbot/views/profile/profile_grid.jade

28 lines
812 B
Plaintext
Raw Normal View History

2013-01-24 02:02:50 +01:00
extends ../layout
block content
2013-01-24 22:49:16 +01:00
script(src='http://masonry.desandro.com/jquery.masonry.min.js')
2013-01-24 22:46:42 +01:00
script
2013-01-24 23:34:34 +01:00
$(function() {
var $container = $('.thumbnails');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector : '.thumbnails > li',
});
2013-01-24 22:46:42 +01:00
});
});
2013-01-24 02:06:05 +01:00
div.page-header.profile_page-header
h1
#{connection}
2013-01-24 23:30:52 +01:00
div#backlink
a(href='../connections') « Connections
2013-01-24 20:39:28 +01:00
ul.thumbnails
2013-01-24 02:06:05 +01:00
each profile, key in profiles
if profile.hasOwnProperty('profile') && profile.profile.avatar
2013-01-24 20:39:28 +01: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}