mirror of
				https://github.com/reality/dbot.git
				synced 2025-10-31 23:17:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			744 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			744 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}
 | |
|   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}
 | 
