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