2014-03-20 06:31:24 +01:00
|
|
|
<div class="panel panel-default file-content">
|
|
|
|
<div class="panel-heading file-head">
|
2014-03-20 10:31:18 +01:00
|
|
|
{{if .ReadmeExist}}
|
|
|
|
<i class="icon fa fa-book"></i>
|
2014-03-24 17:42:57 +01:00
|
|
|
{{if .ReadmeInSingle}}
|
2014-03-24 16:59:27 +01:00
|
|
|
{{.FileName}}
|
2014-03-24 17:42:57 +01:00
|
|
|
{{else}}
|
|
|
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
|
|
|
{{end}}
|
2014-03-20 10:31:18 +01:00
|
|
|
{{else}}
|
2014-03-24 16:59:27 +01:00
|
|
|
<i class="icon fa fa-file-text-o"></i>
|
2014-03-24 17:09:58 +01:00
|
|
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
2014-03-24 17:42:57 +01:00
|
|
|
{{end}}
|
|
|
|
{{if not .ReadmeInSingle}}
|
|
|
|
<div class="btn-group pull-right">
|
2014-04-01 05:46:59 +02:00
|
|
|
<a class="btn btn-default hidden" href="#">Edit</a>
|
2014-04-27 09:05:13 +02:00
|
|
|
<a class="btn btn-default" href="{{.FileLink}}" rel="nofollow">Raw</a>
|
2014-04-01 05:46:59 +02:00
|
|
|
<a class="btn btn-default hidden" href="#">Blame</a>
|
2014-05-13 02:22:35 +02:00
|
|
|
<a class="btn btn-default" href="{{.RepoLink}}/commits/{{.BranchName}}/{{.TreeName}}">History</a>
|
2014-04-01 05:46:59 +02:00
|
|
|
<a class="btn btn-danger hidden" href="#">Delete</a>
|
2014-03-24 17:42:57 +01:00
|
|
|
</div>
|
2014-03-24 16:59:27 +01:00
|
|
|
{{end}}
|
2014-03-20 06:31:24 +01:00
|
|
|
</div>
|
2014-04-27 06:34:48 +02:00
|
|
|
|
2014-03-24 16:56:32 +01:00
|
|
|
{{if not .FileIsText}}
|
2014-04-27 06:34:48 +02:00
|
|
|
<div class="panel-body file-body file-code code-view">
|
|
|
|
{{if .IsImageFile}}
|
|
|
|
<img src="{{.FileLink}}">
|
2014-03-20 06:31:24 +01:00
|
|
|
{{else}}
|
2014-04-27 09:05:13 +02:00
|
|
|
<a href="{{.FileLink}}" rel="nofollow" class="btn btn-default">View Raw</a>
|
2014-03-20 06:31:24 +01:00
|
|
|
{{end}}
|
2014-04-27 06:34:48 +02: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 06:31:24 +01:00
|
|
|
{{end}}
|
2014-03-27 17:30:20 +01:00
|
|
|
</div>
|