2014-03-13 09:45:58 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
{{template "base/navbar" .}}
|
2014-03-13 11:38:49 +05:30
|
|
|
{{template "repo/nav" .}}
|
2014-03-13 09:45:58 +05:30
|
|
|
{{template "repo/toolbar" .}}
|
|
|
|
<div id="gogs-body" class="container">
|
2014-03-14 11:47:29 +05:30
|
|
|
<div id="gogs-source">
|
|
|
|
<div id="gogs-source-toolbar">
|
|
|
|
<button class="btn btn-default pull-right"><i class="fa fa-plus-square"></i>Add File</button>
|
|
|
|
<div class="dropdown branch-switch">
|
|
|
|
<a href="#" class="btn btn-success dropdown-toggle" data-toggle="dropdown"><i class="fa fa-chain"></i>master
|
|
|
|
<b class="caret"></b></a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li><a class="current" href="/{{.RepositoryLink}}/branch/master">master</a></li>
|
|
|
|
<li><a href="//{{.RepositoryLink}}/branch/develop">develop</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2014-03-14 21:27:14 +05:30
|
|
|
{{$paths := .Paths}}
|
2014-03-14 21:24:16 +05:30
|
|
|
{{ $username := .Username}}
|
|
|
|
{{ $reponame := .Reponame}}
|
|
|
|
{{ $branchname := .Branchname}}
|
|
|
|
{{ $treenames := .Treenames}}
|
|
|
|
{{ $n := len $treenames}}
|
|
|
|
{{ $l := Subtract $n 1}}
|
2014-03-14 21:27:14 +05:30
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="root dir"><a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}">{{.Repository.Name}}</a></li>
|
2014-03-14 21:24:16 +05:30
|
|
|
{{range $i, $v := $treenames}}
|
|
|
|
<li class="dir">
|
|
|
|
{{if eq $i $l}}{{$v}}
|
|
|
|
{{else}}
|
|
|
|
<a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}/{{index $paths $i}}">{{$v}}</a>
|
|
|
|
{{end}}</li>
|
|
|
|
{{end}}
|
2014-03-14 11:47:29 +05:30
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
<table id="gogs-source-table" class="table table-hover">
|
|
|
|
<thead class="hidden">
|
2014-03-14 12:10:07 +05:30
|
|
|
<tr>
|
|
|
|
<th class="name">Filename</th>
|
|
|
|
<th class="date">Date modified</th>
|
|
|
|
<th class="text">Message</th>
|
|
|
|
</tr>
|
2014-03-14 11:47:29 +05:30
|
|
|
</thead>
|
|
|
|
<tbody>
|
2014-03-14 12:10:07 +05:30
|
|
|
{{range .Files}}
|
|
|
|
<tr {{if .IsDir}}class="is-dir"{{end}}>
|
2014-03-14 21:24:16 +05:30
|
|
|
<td class="name"><i class="fa {{if .IsDir}}fa-folder{{else}}fa-file{{end}}"></i>
|
|
|
|
{{if .IsDir}}
|
|
|
|
<a href="/{{$username}}/{{$reponame}}/tree/{{$branchname}}/{{.Path}}">{{.Name}}</a>
|
|
|
|
{{else}}
|
|
|
|
<a href="#">{{.Name}}</a>
|
|
|
|
{{end}}</td>
|
2014-03-14 12:10:07 +05:30
|
|
|
<td class="date"><time datetime="{{.Created}}" data-title="true" title="{{.Created}}">{{TimeSince .Created}}</time></td>
|
|
|
|
<td class="text">{{.Message}}</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
2014-03-14 11:47:29 +05:30
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2014-03-13 09:45:58 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|