forked from GitHub/dbot
28 lines
812 B
Plaintext
28 lines
812 B
Plaintext
extends ../layout
|
|
|
|
block content
|
|
script(src='http://masonry.desandro.com/jquery.masonry.min.js')
|
|
script
|
|
$(function() {
|
|
var $container = $('.thumbnails');
|
|
$container.imagesLoaded(function(){
|
|
$container.masonry({
|
|
itemSelector : '.thumbnails > li',
|
|
});
|
|
});
|
|
});
|
|
div.page-header.profile_page-header
|
|
h1
|
|
#{connection}
|
|
div#backlink
|
|
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}
|