forked from GitHub/dbot
ab0a110a8e
* Stats functionality disabled until completion of SamStudio8/dbot-stats#98 * Profile grid currently only works with dbType set to memory * Merge user functionality temporarily disabled
27 lines
739 B
Plaintext
27 lines
739 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 thumbnail in thumbnails
|
|
li.span2
|
|
a.thumbnail(href='/profile/'+connection+'/'+encodeURIComponent(thumbnail.nick))
|
|
div.imgwrap
|
|
img(src="#{thumbnail.avatar}", alt="#{thumbnail.nick}'s photo")
|
|
span.nicks #{thumbnail.nick}
|