summaryrefslogtreecommitdiffstats
path: root/templates/explore
diff options
context:
space:
mode:
authorDhuan <dhuanco@gmail.com>2015-04-04 17:53:21 +0000
committerDhuan <dhuanco@gmail.com>2015-04-18 16:19:01 +0000
commit51aef347ee8b315426b81d97e5dc82fe11cea3bf (patch)
treee89d564a1cea304245674f1477c4df1dd87f8212 /templates/explore
parent9512eec034e4691d611152e8182605a2b7811cb7 (diff)
downloadgitea-51aef347ee8b315426b81d97e5dc82fe11cea3bf.tar.gz
gitea-51aef347ee8b315426b81d97e5dc82fe11cea3bf.zip
Display author's name on explore page
Diffstat (limited to 'templates/explore')
-rw-r--r--templates/explore/repos.tmpl6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/explore/repos.tmpl b/templates/explore/repos.tmpl
index 954d0b06ec..3718803172 100644
--- a/templates/explore/repos.tmpl
+++ b/templates/explore/repos.tmpl
@@ -12,7 +12,9 @@
<li><i class="octicon octicon-star"></i> {{.NumStars}}</li>
<li><i class="octicon octicon-git-branch"></i> {{.NumForks}}</li>
</ul>
- <h2><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></h2>
+ <h2>
+ <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Owner.Name}} / {{.Name}}</a>
+ </h2>
<p class="org-repo-description">{{.Description}}</p>
<p class="org-repo-updated">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Updated $.i18n.Lang}}</p>
</div>
@@ -22,4 +24,4 @@
</div>
</div>
</div>
-{{template "ng/base/footer" .}} \ No newline at end of file
+{{template "ng/base/footer" .}}