diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-13 12:15:58 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-13 12:15:58 +0800 |
commit | 4fff38856e784cb1c2c8115a7c7e013f42f7d8d8 (patch) | |
tree | 7d3984ca36ff3c255feb1a1483126c9fb29e0852 /templates/repo/single.tmpl | |
parent | 3c67318d8fcc6f61d766496a092c4be688fe8e75 (diff) | |
download | gitea-4fff38856e784cb1c2c8115a7c7e013f42f7d8d8.tar.gz gitea-4fff38856e784cb1c2c8115a7c7e013f42f7d8d8.zip |
single repository page ui preview
Diffstat (limited to 'templates/repo/single.tmpl')
-rw-r--r-- | templates/repo/single.tmpl | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/repo/single.tmpl b/templates/repo/single.tmpl new file mode 100644 index 0000000000..ef812f8249 --- /dev/null +++ b/templates/repo/single.tmpl @@ -0,0 +1,38 @@ +{{template "base/head" .}} +{{template "base/navbar" .}} +<div id="gogs-body-nav" class="gogs-repo-nav"> + <div class="container"> + <div class="gogs-repo-btns pull-right"> + <div class="btn-group" id="gogs-repo-watching"> + <button type="button" class="btn btn-default"><i class="fa fa-eye"></i>Watch {x}</button> + <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> + <span class="caret"></span> + <span class="sr-only">Toggle Dropdown</span> + </button> + <div class="dropdown-menu" role="menu"> + <div class="dropdown-item" data-val="not-watching"> + <h4 role="presentation" class="dropdown-header">Not Watching</h4> + <p class="description">You only receive notifications for conversations in which you participate or are @mentioned.</p> + <p class="divider"></p> + </div> + <div class="dropdown-item" data-val="watching"> + <h4 role="presentation" class="dropdown-header">Watching</h4> + <p class="description">You receive notifications for all conversations in this repository.</p> + </div> + </div> + </div> + <div class="btn-group"> + <button type="button" class="btn btn-default"><i class="fa fa-star"></i>Star {{.Repository.NumStars}}</button> + </div> + <div class="btn-group"> + <button type="button" class="btn btn-default"><i class="fa fa-code-fork"></i>Fork {{.Repository.NumForks}}</button> + </div> + </div> + <h3><i class="fa fa-book fa-lg"></i><a href="/{{.Owner.Name}}/">{{.Owner.Name}}</a> / {{.Repository.Name}}</h3> + </div> +</div> +{{template "repo/toolbar" .}} +<div id="gogs-body" class="container"> + repo single dashboard +</div> +{{template "base/footer" .}}
\ No newline at end of file |