2014-03-20 05:31:24 +00:00
|
|
|
<div class="panel panel-default file-content">
|
|
|
|
<div class="panel-heading file-head">
|
2014-03-20 09:31:18 +00:00
|
|
|
{{if .ReadmeExist}}
|
|
|
|
<i class="icon fa fa-book"></i>
|
2014-03-24 16:42:57 +00:00
|
|
|
{{if .ReadmeInSingle}}
|
2014-03-24 15:59:27 +00:00
|
|
|
{{.FileName}}
|
2014-03-24 16:42:57 +00:00
|
|
|
{{else}}
|
|
|
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
|
|
|
{{end}}
|
2014-03-20 09:31:18 +00:00
|
|
|
{{else}}
|
2014-03-24 15:59:27 +00:00
|
|
|
<i class="icon fa fa-file-text-o"></i>
|
2014-03-24 16:09:58 +00:00
|
|
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
2014-03-24 16:42:57 +00:00
|
|
|
{{end}}
|
|
|
|
{{if not .ReadmeInSingle}}
|
|
|
|
<div class="btn-group pull-right">
|
2014-04-01 03:46:59 +00:00
|
|
|
<a class="btn btn-default hidden" href="#">Edit</a>
|
2014-04-27 07:05:13 +00:00
|
|
|
<a class="btn btn-default" href="{{.FileLink}}" rel="nofollow">Raw</a>
|
2014-04-01 03:46:59 +00:00
|
|
|
<a class="btn btn-default hidden" href="#">Blame</a>
|
2014-05-13 00:22:35 +00:00
|
|
|
<a class="btn btn-default" href="{{.RepoLink}}/commits/{{.BranchName}}/{{.TreeName}}">History</a>
|
2014-04-01 03:46:59 +00:00
|
|
|
<a class="btn btn-danger hidden" href="#">Delete</a>
|
2014-03-24 16:42:57 +00:00
|
|
|
</div>
|
2014-03-24 15:59:27 +00:00
|
|
|
{{end}}
|
2014-03-20 05:31:24 +00:00
|
|
|
</div>
|
2014-08-30 13:12:53 +00:00
|
|
|
|
2014-03-24 15:56:32 +00:00
|
|
|
{{if not .FileIsText}}
|
2014-04-27 04:34:48 +00:00
|
|
|
<div class="panel-body file-body file-code code-view">
|
|
|
|
{{if .IsImageFile}}
|
|
|
|
<img src="{{.FileLink}}">
|
2014-03-20 05:31:24 +00:00
|
|
|
{{else}}
|
2014-04-27 07:05:13 +00:00
|
|
|
<a href="{{.FileLink}}" rel="nofollow" class="btn btn-default">View Raw</a>
|
2014-03-20 05:31:24 +00:00
|
|
|
{{end}}
|
2014-04-27 04:34:48 +00:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{if .ReadmeExist}}
|
|
|
|
<div class="panel-body file-body markdown">
|
|
|
|
{{.FileContent|str2html}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<div class="panel-body file-body file-code code-view">
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="lines-num"></td>
|
|
|
|
<td class="lines-code markdown"><pre class="prettyprint linenums{{if .FileExt}} lang-{{.FileExt}}{{end}}">{{.FileContent}}</pre></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2014-03-20 05:31:24 +00:00
|
|
|
{{end}}
|
2014-03-27 16:30:20 +00:00
|
|
|
</div>
|