aboutsummaryrefslogtreecommitdiff
path: root/templates/repo/single.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/single.tmpl')
-rw-r--r--templates/repo/single.tmpl44
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/repo/single.tmpl b/templates/repo/single.tmpl
new file mode 100644
index 00000000..56e6746c
--- /dev/null
+++ b/templates/repo/single.tmpl
@@ -0,0 +1,44 @@
+{{template "base/head" .}}
+{{template "base/navbar" .}}
+{{template "repo/nav" .}}
+{{template "repo/toolbar" .}}
+<div id="gogs-body" class="container">
+ <div id="gogs-source">
+ {{if .IsBareRepo}}
+ {{template "repo/single_bare" .}}
+ {{else}}
+ <div class="source-toolbar">
+ {{ $n := len .Treenames}}
+ {{if not .IsFile}}<button class="btn btn-default pull-right hidden"><i class="fa fa-plus-square"></i>Add File</button>{{end}}
+ <div class="dropdown branch-switch">
+ <a href="#" class="btn btn-success dropdown-toggle" data-toggle="dropdown"><i class="fa fa-chain"></i>{{.Branchname}}&nbsp;&nbsp;
+ <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ {{range .Branches}}
+ <li><a {{if eq . $.Branchname}}class="current" {{end}}href="/{{$.Username}}/{{$.Reponame}}/src/{{.}}">{{.}}</a></li>
+ {{end}}
+ </ul>
+ </div>
+ {{ $l := Subtract $n 1}}
+ <ol class="breadcrumb">
+ <li class="root dir">
+ <a href="{{.BranchLink}}">{{.Repository.Name}}</a></li>
+ {{range $i, $v := .Treenames}}
+ <li class="dir">
+ {{if eq $i $l}}{{$v}}
+ {{else}}
+ <a href="{{$.BranchLink}}/{{index $.Paths $i}}">{{$v}}</a>&nbsp;
+ {{end}}
+ </li>
+ {{end}}
+ </ol>
+ </div>
+ {{if .IsFile}}
+ {{template "repo/single_file" .}}
+ {{else}}
+ {{template "repo/single_list" .}}
+ {{end}}
+ {{end}}
+ </div>
+</div>
+{{template "base/footer" .}} \ No newline at end of file