Files
Gogs/templates/user/meta/header.tmpl

25 lines
873 B
Cheetah
Raw Permalink Normal View History

{{with .Owner}}
<div class="ui container">
<img class="ui avatar image" src="{{.AvatarURLPath}}">
<span class="header name">
<a href="{{.HomeURLPath}}">{{.Name}}</a>
{{with .FullName}}({{.}}){{end}}
</span>
<div class="ui right">
{{if or $.PageIsFollowers $.PageIsFollowing}}
2017-04-06 23:48:49 -04:00
{{if and $.IsLogged (ne $.LoggedUserName .Name)}}
<div class="follow">
2017-04-06 23:48:49 -04:00
{{if $.LoggedUser.IsFollowing .ID}}
<a class="ui small basic red button" href="{{.HomeURLPath}}/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="{{.HomeURLPath}}/action/follow?redirect_to={{$.Link}}"><i class="octicon octicon-person"></i> {{$.i18n.Tr "user.follow"}}</a>
{{end}}
</div>
{{end}}
{{end}}
</div>
</div>
{{end}}
2016-07-24 01:08:22 +08:00
<div class="ui divider"></div>