diff options
Diffstat (limited to 'templates/explore/repo_list.tmpl')
-rw-r--r-- | templates/explore/repo_list.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl index 34aab6477a..8c7ba51a54 100644 --- a/templates/explore/repo_list.tmpl +++ b/templates/explore/repo_list.tmpl @@ -2,7 +2,9 @@ {{range .Repos}} <div class="item"> <div class="ui header"> - <img class="ui avatar image" src="{{.RelAvatarLink}}"> + {{if .RelAvatarLink}} + <img class="ui avatar image" src="{{.RelAvatarLink}}"> + {{end}} <a class="name" href="{{.Link}}"> {{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}} {{if .IsArchived}}<i class="archive icon archived-icon"></i>{{end}} |