* Direct avatar rendering This adds new template helpers for avatar rendering which output image elements with direct links to avatars which makes them cacheable by the browsers. This should be a major performance improvment for pages with many avatars. * fix avatars of other user's profile pages * fix top border on user avatar name * uncircle avatars * remove old incomplete avatar selector * use title attribute for name and add it back on blame * minor refactor * tweak comments * fix url path join and adjust test to new result * dedupe functions
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div class="page-content explore users">
 | |
| 	{{template "explore/navbar" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "explore/search" .}}
 | |
| 
 | |
| 		<div class="ui user list">
 | |
| 			{{range .Users}}
 | |
| 				<div class="item">
 | |
| 					{{avatar .}}
 | |
| 				  <div class="content">
 | |
| 					<span class="header"><a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}</span>
 | |
| 					<div class="description">
 | |
| 						{{if .Location}}
 | |
| 							{{svg "octicon-location"}} {{.Location}}
 | |
| 						{{end}}
 | |
| 						{{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}}
 | |
| 							{{svg "octicon-mail"}}
 | |
| 							<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a>
 | |
| 						{{end}}
 | |
| 						{{svg "octicon-clock"}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}}
 | |
| 					</div>
 | |
| 				  </div>
 | |
| 				</div>
 | |
| 			{{else}}
 | |
| 				<div>{{$.i18n.Tr "explore.user_no_results"}}</div>
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 
 | |
| 		{{template "base/paginate" .}}
 | |
| 	</div>
 | |
| </div>
 | |
| {{template "base/footer" .}}
 |