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.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							863 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							863 B
						
					
					
				| {{with .Owner}}
 | |
| <div class="ui container">
 | |
| 	<img class="ui avatar image" src="{{.AvatarLink}}">
 | |
| 	<span class="header name">
 | |
| 		<a href="{{.HomeLink}}">{{.Name}}</a>
 | |
| 		{{with .FullName}}({{.}}){{end}}
 | |
| 	</span>
 | |
| 
 | |
| 	<div class="ui right">
 | |
| 		
 | |
| 		{{if or $.PageIsFollowers $.PageIsFollowing}}
 | |
| 			{{if and $.IsSigned (ne $.SignedUserName .Name)}}
 | |
| 				<div class="follow">
 | |
| 					{{if $.SignedUser.IsFollowing .Id}}
 | |
| 					<a class="ui small basic red button" href="{{.HomeLink}}/action/unfollow?redirect_to={{$.Link}}"><i class="octicon octicon-person"></i> {{$.i18n.Tr "user.unfollow"}}</a>
 | |
| 					{{else}}
 | |
| 					<a class="ui small basic green button" href="{{.HomeLink}}/action/follow?redirect_to={{$.Link}}"><i class="octicon octicon-person"></i> {{$.i18n.Tr "user.follow"}}</a>
 | |
| 					{{end}}
 | |
| 				</div>
 | |
| 			{{end}}
 | |
| 		{{end}}
 | |
| 	</div>
 | |
| </div>
 | |
| {{end}}
 | |
| <div class="ui divider"></div> |