You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							965 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							965 B
						
					
					
				| {{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" .}}
 | |
| 
 |