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