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