2014-07-26 06:24:27 +02:00
|
|
|
{{template "ng/base/head" .}}
|
|
|
|
{{template "ng/base/header" .}}
|
|
|
|
<div id="repo-wrapper">
|
2014-08-02 19:47:33 +02:00
|
|
|
{{template "repo/header" .}}
|
2014-07-26 06:24:27 +02:00
|
|
|
<div id="repo-content" class="clear container">
|
|
|
|
<div id="repo-main" class="left grid-4-5">
|
|
|
|
<p id="repo-desc">
|
|
|
|
<span class="description">{{.Repository.DescriptionHtml}}</span>
|
|
|
|
<a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
|
|
|
|
</p>
|
|
|
|
<ul id="repo-file-nav" class="clear menu menu-line">
|
2014-08-31 18:33:40 +02:00
|
|
|
<!-- <li>
|
2014-07-26 06:24:27 +02:00
|
|
|
<a href="#">
|
|
|
|
<button class="btn btn-green btn-small btn-radius" id="repo-compare-btn"><i class="octicon octicon-git-compare"></i></button>
|
|
|
|
</a>
|
2014-08-31 18:33:40 +02:00
|
|
|
</li> -->
|
2014-07-26 06:24:27 +02:00
|
|
|
<li id="repo-branch-switch" class="down drop">
|
|
|
|
<a href="#">
|
|
|
|
<button class="btn btn-gray btn-small btn-radius">
|
2014-09-03 02:31:32 +02:00
|
|
|
<i class="octicon octicon-git-branch"></i> {{if .IsViewBranch}}Branch{{else}}Tree{{end}}:
|
2014-07-27 00:37:18 +02:00
|
|
|
<strong id="repo-branch-current">{{if .IsViewBranch}}{{.BranchName}}{{else}}{{ShortSha .BranchName}}{{end}}</strong>
|
2014-07-26 06:24:27 +02:00
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
<div class="drop-down panel">
|
2014-08-31 18:33:40 +02:00
|
|
|
<p class="panel-header text-bold">Branches <!-- & Tags --></p>
|
|
|
|
<!-- <input id="repo-branch-filter-ipt" class="ipt ipt-large" type="text" placeholder="find branches / tags"/> -->
|
2014-07-26 06:24:27 +02:00
|
|
|
<div id="repo-branch-tag">
|
|
|
|
<ul class="menu menu-line tab-nav clear" id="repo-branch-tab-nav">
|
|
|
|
<li class="js-tab-nav js-tab-nav-show left" data-tab-target="#repo-branch-list"><a href="#">Branches</a></li>
|
2014-08-31 18:33:40 +02:00
|
|
|
<!-- <li class="js-tab-nav left" data-tab-target="#repo-tag-list"><a href="#">Tags</a></li> -->
|
2014-07-26 06:24:27 +02:00
|
|
|
</ul>
|
|
|
|
<ul class="menu menu-vertical switching-list" id="repo-branch-list">
|
|
|
|
{{range .Branches}}
|
2014-07-27 00:37:18 +02:00
|
|
|
<li {{if eq . $.BranchName}}class="checked"{{end}}><a href="{{$.RepoLink}}/src/{{.}}"><i class="octicon octicon-check"></i>{{.}}</a></li>
|
2014-07-26 06:24:27 +02:00
|
|
|
{{end}}
|
|
|
|
</ul>
|
2014-08-31 18:33:40 +02:00
|
|
|
<!-- <ul class="menu menu-vertical switching-list" id="repo-tag-list">
|
2014-07-26 06:24:27 +02:00
|
|
|
<li><a href="#"><i class="octicon octicon-check"></i>0.3.3</a></li>
|
|
|
|
<li><a href="#"><i class="octicon octicon-check"></i>0.4.4</a></li>
|
|
|
|
<li class="checked"><a href="#"><i class="octicon octicon-check"></i>0.1</a></li>
|
|
|
|
<li><a href="#"><i class="octicon octicon-check"></i>0.1 beta</a></li>
|
2014-08-31 18:33:40 +02:00
|
|
|
</ul> -->
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
<li id="repo-bread" class="breads">
|
|
|
|
<a class="title bread" href="{{.RepoLink}}">{{.Repository.Name}}</a>
|
|
|
|
{{ $n := len .Treenames}}
|
|
|
|
{{ $l := Subtract $n 1}}
|
|
|
|
{{range $i, $v := .Treenames}}
|
|
|
|
{{if eq $i $l}}
|
|
|
|
<span class="bread">{{$v}}</span>
|
|
|
|
{{else}}
|
|
|
|
<span class="bread"><a href="{{$.BranchLink}}/{{index $.Paths $i}}">{{$v}}</a></span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</li>
|
2014-08-31 18:33:40 +02:00
|
|
|
<!-- <li id="repo-commits-jump" class="repo-jump right">
|
2014-07-26 06:24:27 +02:00
|
|
|
<a href="#">
|
2014-08-11 05:11:18 +02:00
|
|
|
<button class="btn btn-small btn-gray btn-right-radius"><i class="octicon octicon-git-commit"></i></button>
|
2014-07-26 06:24:27 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li id="repo-find-jump" class="repo-jump right">
|
|
|
|
<a href="#">
|
2014-08-11 05:11:18 +02:00
|
|
|
<button class="btn btn-small btn-gray btn-left-radius"><i class="octicon octicon-list-unordered"></i></button>
|
2014-07-26 06:24:27 +02:00
|
|
|
</a>
|
2014-08-31 18:33:40 +02:00
|
|
|
</li> -->
|
2014-07-26 06:24:27 +02:00
|
|
|
</ul>
|
|
|
|
{{if .IsFile}}
|
|
|
|
{{template "repo/view_file" .}}
|
|
|
|
{{else}}
|
|
|
|
{{template "repo/view_list" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-08-02 19:47:33 +02:00
|
|
|
{{template "repo/sidebar" .}}
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-03 02:31:32 +02:00
|
|
|
{{template "ng/base/footer" .}}
|