Browse Source

Fix #65 fix #57

tags/v0.9.99
Unknown 10 years ago
parent
commit
5d30bfc8ba
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      README.md
  2. 1
    1
      README_ZH.md
  3. 1
    1
      templates/repo/nav.tmpl

+ 1
- 1
README.md View File

@@ -31,7 +31,7 @@ More importantly, Gogs only needs one binary to setup your own project hosting o
- Activity timeline
- SSH/HTTP(S) protocol support.
- Register/delete/rename account.
- Create/delete/watch/rename/transfer public repository.
- Create/delete/watch/rename/transfer public/private repository.
- Repository viewer.
- Issue tracker.
- Gravatar and cache support.

+ 1
- 1
README_ZH.md View File

@@ -25,7 +25,7 @@ Gogs 完全使用 Go 语言来实现对 Git 数据的操作,实现 **零** 依
- 活动时间线
- SSH/HTTP(S) 协议支持
- 注册/删除/重命名用户
- 创建/删除/关注/重命名/转移公开仓库
- 创建/删除/关注/重命名/转移 公开/私有 仓库
- 仓库浏览器
- Bug 追踪系统
- Gravatar 以及缓存支持

+ 1
- 1
templates/repo/nav.tmpl View File

@@ -2,7 +2,7 @@
<div class="container">
<div class="row">
<div class="col-md-7">
<h3 class="name"><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="/{{.Owner.Name}}/{{.Repository.Name}}">{{.Repository.Name}}</a></h3>
<h3 class="name"><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="/{{.Owner.Name}}/{{.Repository.Name}}">{{.Repository.Name}}</a>{{if .Repository.IsPrivate}} <span class="label label-default">Private</span> {{end}}</h3>
<p class="desc">{{.Repository.Description}}{{if .Repository.Website}} <a href="{{.Repository.Website}}">{{.Repository.Website}}</a>{{end}}</p>
</div>
<div class="col-md-5 actions text-right clone-group-btn">

Loading…
Cancel
Save