2015-11-16 17:11:59 +01:00
{{ template "base/head" . }}
< div class = "user profile" >
2015-12-07 23:30:52 +01:00
< div class = "ui container" >
< div class = "ui grid" >
< div class = "ui five wide column" >
< div class = "ui card" >
2016-01-09 07:45:06 +01:00
{{ if and ( or .Owner.UseCustomAvatar DisableGravatar ) ( eq .SignedUserName .Owner.Name ) }}
2015-12-07 23:30:52 +01:00
< a class = "image poping up" href = " {{ AppSubUrl }} /user/settings" id = "profile-avatar" data-content = " {{ .i18n.Tr "user.change_custom_avatar" }} " data-variation = "inverted tiny" data-position = "bottom center" >
< img src = " {{ .Owner.AvatarLink }} ?s=290" title = " {{ .Owner.Name }} " />
< / a >
{{ else if eq .SignedUserName .Owner.Name }}
< a class = "image poping up" href = "http://gravatar.com/emails/" id = "profile-avatar" data-content = " {{ .i18n.Tr "user.change_avatar" }} " data-variation = "inverted tiny" data-position = "bottom center" >
< img src = " {{ .Owner.AvatarLink }} ?s=290" title = " {{ .Owner.Name }} " />
< / a >
{{ else }}
< span class = "image" >
< img src = " {{ .Owner.AvatarLink }} ?s=290" title = " {{ .Owner.Name }} " />
< / span >
{{ end }}
< div class = "content" >
{{ if .Owner.FullName }} < span class = "header text center" > {{ .Owner.FullName }} </ span > {{ end }}
< span class = "username text center" > {{ .Owner.Name }} </ span >
< / div >
< div class = "extra content" >
< ul class = "text black" >
{{ if .Owner.Location }}
< li >< i class = "icon octicon octicon-location" ></ i > {{ .Owner.Location }} </ li >
{{ end }}
{{ if and .Owner.Email .IsSigned }}
< li >
< i class = "icon octicon octicon-mail" > < / i >
< a href = "mailto: {{ .Owner.Email }} " rel = "nofollow" > {{ .Owner.Email }} </ a >
< / li >
{{ end }}
{{ if .Owner.Website }}
< li >
< i class = "icon octicon octicon-link" > < / i >
< a target = "_blank" href = " {{ .Owner.Website }} " > {{ .Owner.Website }} </ a >
< / li >
{{ end }}
< li >< i class = "icon octicon octicon-clock" ></ i > {{ .i18n.Tr "user.join_on" }} {{ DateFmtShort .Owner.Created }} </ li >
2015-12-21 13:24:11 +01:00
< li >
2016-01-12 03:09:59 +01:00
< i class = "icon octicon octicon-person" > < / i >
2015-12-21 13:24:11 +01:00
< a href = " {{ .Owner.HomeLink }} /followers" >
{{ .Owner.NumFollowers }} {{ .i18n.Tr "user.followers" }}
< / a >
-
< a href = " {{ .Owner.HomeLink }} /following" >
{{ .Owner.NumFollowing }} {{ .i18n.Tr "user.following" }}
< / a >
< / li >
{{ /*
< li >
2016-01-12 03:09:59 +01:00
< i class = "icon octicon octicon-star" > < / i >
2015-12-21 13:24:11 +01:00
< a href = " {{ .Owner.HomeLink }} /stars" >
{{ .Owner.NumStars }} {{ .i18n.Tr "user.starred" }}
< / a >
< / li >
*/}}
2016-01-14 14:29:25 +01:00
{{ if .Orgs }}
2016-01-12 03:09:59 +01:00
< li >
{{ range .Orgs }}
2016-01-28 12:07:16 +01:00
< a href = " {{ .HomeLink }} " >< img class = "ui mini image poping up" src = " {{ .AvatarLink }} " data-content = " {{ .Name }} " data-position = "top center" data-variation = "tiny inverted" ></ a >
2016-01-12 03:09:59 +01:00
{{ end }}
< / li >
2016-01-14 14:29:25 +01:00
{{ end }}
2015-12-21 13:24:11 +01:00
{{ if and .IsSigned ( ne .SignedUserName .Owner.Name ) }}
< li class = "follow" >
{{ if .SignedUser.IsFollowing .Owner.Id }}
< a class = "ui basic red button" href = " {{ .Link }} /action/unfollow?redirect_to= {{ $.Link }} " >< i class = "octicon octicon-person" ></ i > {{ .i18n.Tr "user.unfollow" }} </ a >
{{ else }}
< a class = "ui basic green button" href = " {{ .Link }} /action/follow?redirect_to= {{ $.Link }} " >< i class = "octicon octicon-person" ></ i > {{ .i18n.Tr "user.follow" }} </ a >
{{ end }}
< / li >
{{ end }}
2015-12-07 23:30:52 +01:00
< / ul >
< / div >
< / div >
< / div >
< div class = "ui eleven wide column" >
< div class = "ui secondary pointing menu" >
< a class = " {{ if ne .TabName "activity" }} active {{ end }} item" href = " {{ .Owner.HomeLink }} " >
< i class = "icon octicon octicon-repo" ></ i > {{ .i18n.Tr "user.repositories" }}
< / a >
< a class = "item" >
< a class = " {{ if eq .TabName "activity" }} active {{ end }} item" href = " {{ .Owner.HomeLink }} ?tab=activity" >
< i class = "icon octicon octicon-rss" ></ i > {{ .i18n.Tr "user.activity" }}
< / a >
< / a >
< / div >
{{ if ne .TabName "activity" }}
{{ template "explore/repo_list" . }}
{{ else }}
< br >
< div class = "feeds" >
{{ template "user/dashboard/feeds" . }}
< / div >
{{ end }}
< / div >
< / div >
< / div >
2014-03-02 14:47:55 +01:00
< / div >
2015-12-07 23:30:52 +01:00
{{ template "base/footer" . }}