header.tmpl 1.2 KB

123456789101112131415161718192021222324252627
  1. {{with .Owner}}
  2. <div class="ui container">
  3. <img class="ui avatar image" src="{{.RelAvatarLink}}">
  4. <span class="header name">
  5. <a href="{{.HomeLink}}">{{.Name}}</a>
  6. ( {{.FullName}}
  7. {{if .IsVerified}}<a class="poping up" target="_blank" href="/verified" data-content="Verified" data-variation="inverted tiny" data-position="right center"> <i class="verified octicon octicon-verified"></i></a>{{end}}
  8. {{if .IsMaker}}<a class="poping up" target="_blank" href="/maker" data-content="Maker" data-variation="inverted tiny" data-position="right center"> <i class="maker octicon octicon-paintcan"></i></a>{{end}})
  9. </span>
  10. <div class="ui right">
  11. {{if or $.PageIsFollowers $.PageIsFollowing}}
  12. {{if and $.IsLogged (ne $.LoggedUserName .Name)}}
  13. <div class="follow">
  14. {{if $.LoggedUser.IsFollowing .ID}}
  15. <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>
  16. {{else}}
  17. <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>
  18. {{end}}
  19. </div>
  20. {{end}}
  21. {{end}}
  22. </div>
  23. </div>
  24. {{end}}
  25. <div class="ui divider"></div>