forked from NYANDEV/forgejo
Merge branch 'develop' of github.com:gogits/gogs into feature/pull_request2
This commit is contained in:
commit
1ce4543a94
2 changed files with 7 additions and 5 deletions
|
@ -194,7 +194,7 @@ func (u *User) UploadAvatar(data []byte) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
m := resize.Resize(200, 200, img, resize.NearestNeighbor)
|
||||
m := resize.Resize(234, 234, img, resize.NearestNeighbor)
|
||||
|
||||
sess := x.NewSession()
|
||||
defer sess.Close()
|
||||
|
|
|
@ -4,12 +4,14 @@
|
|||
<div id="user-profile-page" class="container clear">
|
||||
<div class="grid-1-5 left">
|
||||
<div>
|
||||
{{if .Owner.UseCustomAvatar}}
|
||||
{{if and (.Owner.UseCustomAvatar) (eq .SignedUser.Id .Owner.Id)}}
|
||||
<a href="{{AppSubUrl}}/user/settings" id="profile-avatar" original-title="{{.i18n.Tr "user.change_custom_avatar"}}">
|
||||
{{else}}
|
||||
{{else if eq .SignedUser.Id .Owner.Id}}
|
||||
<a href="http://gravatar.com/emails/" id="profile-avatar" original-title="{{.i18n.Tr "user.change_avatar"}}">
|
||||
{{else}}
|
||||
<a href="{{.Owner.AvatarLink}}?s=234" id="profile-avatar">
|
||||
{{end}}
|
||||
<img class="profile-avatar" src="{{.Owner.AvatarLink}}?s=200"title="{{.Owner.Name}}"/>
|
||||
<img class="profile-avatar" src="{{.Owner.AvatarLink}}?s=234" title="{{.Owner.Name}}"/>
|
||||
</a>
|
||||
<div class="text-center" id="profile-name">
|
||||
{{if .Owner.FullName}}<span id="profile-fullname" class="center-block">{{.Owner.FullName}}</span><br>{{end}}
|
||||
|
@ -17,7 +19,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="profile-info">
|
||||
<hr>
|
||||
<hr>
|
||||
<ul class="list-no-style">
|
||||
{{if .Owner.Location}}
|
||||
<li class="list-group-item"><i class="octicon octicon-location"></i> {{.Owner.Location}}</li>
|
||||
|
|
Loading…
Reference in a new issue