2014-03-20 07:31:24 +02:00
|
|
|
<div class="panel panel-default file-content">
|
|
|
|
<div class="panel-heading file-head">
|
2014-03-20 11:31:18 +02:00
|
|
|
{{if .ReadmeExist}}
|
|
|
|
<i class="icon fa fa-book"></i>
|
2014-03-24 18:42:57 +02:00
|
|
|
{{if .ReadmeInSingle}}
|
2014-03-24 17:59:27 +02:00
|
|
|
{{.FileName}}
|
2014-03-24 18:42:57 +02:00
|
|
|
{{else}}
|
|
|
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
|
|
|
{{end}}
|
2014-03-20 11:31:18 +02:00
|
|
|
{{else}}
|
2014-03-24 17:59:27 +02:00
|
|
|
<i class="icon fa fa-file-text-o"></i>
|
2014-03-24 18:09:58 +02:00
|
|
|
{{.FileName}} <span class="file-size">{{FileSize .FileSize}}</span>
|
2014-03-24 18:42:57 +02:00
|
|
|
{{end}}
|
|
|
|
{{if not .ReadmeInSingle}}
|
|
|
|
<div class="btn-group pull-right">
|
|
|
|
<a class="btn btn-default hidden" href="#">Edit</a>
|
|
|
|
<a class="btn btn-default" href="{{.FileLink}}">Raw</a>
|
|
|
|
<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>
|
|
|
|
</div>
|
2014-03-24 17:59:27 +02:00
|
|
|
{{end}}
|
2014-03-20 07:31:24 +02:00
|
|
|
</div>
|
2014-03-24 17:56:32 +02:00
|
|
|
{{if not .FileIsText}}
|
|
|
|
<div class="panel-footer text-center">
|
2014-03-27 18:30:20 +02:00
|
|
|
{{if .IsImageFile}}
|
|
|
|
<img src="{{.FileLink}}">
|
|
|
|
{{else}}
|
|
|
|
<a href="{{.FileLink}}" class="btn btn-default">View Raw</a>
|
|
|
|
{{end}}
|
2014-03-20 07:31:24 +02:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{if .ReadmeExist}}
|
|
|
|
<div class="panel-body file-body markdown">
|
|
|
|
{{.FileContent|str2html}}
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2014-03-23 14:58:12 +02:00
|
|
|
<div class="panel-body file-body file-code code-view">
|
2014-03-20 15:10:37 +02:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="lines-num"></td>
|
2014-03-24 17:56:32 +02:00
|
|
|
<td class="lines-code markdown"><pre class="prettyprint linenums{{if .FileExt}} lang-{{.FileExt}}{{end}}">{{.FileContent}}</pre></td>
|
2014-03-20 15:10:37 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-03-20 07:31:24 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2014-03-27 18:30:20 +02:00
|
|
|
</div>
|