diff options
author | Unknwon <u@gogs.io> | 2016-07-16 12:45:13 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-16 12:45:13 +0800 |
commit | 971e2c3bd6a63a9d75ee7b222b8ec1716f47fbb6 (patch) | |
tree | 8010e3196c794357d7b410ede0554c374c5c80b9 /templates/user/dashboard/dashboard.tmpl | |
parent | c083d7656794ec0b4d856994daddd27e98841d70 (diff) | |
download | gitea-971e2c3bd6a63a9d75ee7b222b8ec1716f47fbb6.tar.gz gitea-971e2c3bd6a63a9d75ee7b222b8ec1716f47fbb6.zip |
Upgrade octicon to 4.3.0
Diffstat (limited to 'templates/user/dashboard/dashboard.tmpl')
-rw-r--r-- | templates/user/dashboard/dashboard.tmpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index eb4d7542ca..f04cd6af3b 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -29,10 +29,10 @@ {{range .Repos}} <li {{if .IsPrivate}}class="private"{{end}}> <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> - <i class="icon octicon octicon-{{if .IsFork}}repo-forked{{else if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> + <i class="octicon octicon-{{if .IsFork}}repo-forked{{else if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> <strong class="text truncate item-name">{{.Name}}</strong> <span class="ui right text light grey"> - <i class="octicon octicon-star"></i>{{.NumStars}} + {{.NumStars}} <i class="octicon octicon-star rear"></i> </span> </a> </li> @@ -49,12 +49,12 @@ {{range .CollaborativeRepos}} <li {{if .IsPrivate}}class="private"{{end}}> <a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}"> - <i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> + <i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> <span class="text truncate owner-and-repo"> <span class="text truncate owner-name">{{.Owner.Name}}</span> / <strong>{{.Name}}</strong> </span> <span class="ui right text light grey"> - <i class="octicon octicon-star"></i>{{.NumStars}} + {{.NumStars}} <i class="octicon octicon-star rear"></i> </span> </a> </li> @@ -80,10 +80,10 @@ {{range .ContextUser.Orgs}} <li> <a href="{{AppSubUrl}}/{{.Name}}"> - <i class="icon octicon octicon-organization"></i> + <i class="octicon octicon-organization"></i> <strong class="text truncate item-name">{{.Name}}</strong> <span class="ui right text light grey"> - <i class="octicon octicon-repo"></i>{{.NumRepos}} + {{.NumRepos}} <i class="octicon octicon-repo rear"></i> </span> </a> </li> @@ -108,10 +108,10 @@ {{range .Mirrors}} <li {{if .IsPrivate}}class="private"{{end}}> <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> - <i class="icon octicon octicon-repo-clone"></i> + <i class="octicon octicon-repo-clone"></i> <strong class="text truncate item-name">{{.Name}}</strong> <span class="ui right text light grey"> - <i class="octicon octicon-sync"></i>{{.Interval}}H + {{.Interval}}H <i class="octicon octicon-sync rear"></i> </span> </a> </li> |