diff options
author | 하윤 <themaymeow@gmail.com> | 2019-04-15 20:59:30 +0200 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-04-15 14:59:30 -0400 |
commit | 83d6e5e3f8df48fdb550c82d1db620e89f9f33e9 (patch) | |
tree | df270fb2715321806fe8d3719cb409c3e7f93d8c /templates/explore/repo_list.tmpl | |
parent | 837116875efc8f27265e884499ecca69ef554014 (diff) | |
download | gitea-83d6e5e3f8df48fdb550c82d1db620e89f9f33e9.tar.gz gitea-83d6e5e3f8df48fdb550c82d1db620e89f9f33e9.zip |
Update UI for topics labels on projects (#6639)
Diffstat (limited to 'templates/explore/repo_list.tmpl')
-rw-r--r-- | templates/explore/repo_list.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl index 94ce293389..b176817001 100644 --- a/templates/explore/repo_list.tmpl +++ b/templates/explore/repo_list.tmpl @@ -24,9 +24,9 @@ </div> {{if .DescriptionHTML}}<p class="has-emoji">{{.DescriptionHTML}}</p>{{end}} {{if .Topics }} - <div> + <div class="ui tags"> {{range .Topics}} - {{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui green basic label topic">{{.}}</div></a>{{end}} + {{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui small label topic">{{.}}</div></a>{{end}} {{end}} </div> {{end}} |