2014-09-27 11:08:57 +02:00
|
|
|
<div class="panel panel-radius" id="{{if .ReadmeExist}}repo-readme{{else}}repo-read-file{{end}}">
|
2014-07-26 06:24:27 +02:00
|
|
|
<p class="panel-header">
|
|
|
|
{{if .ReadmeExist}}
|
|
|
|
<i class="icon fa fa-book fa-lg"></i>
|
|
|
|
{{if .ReadmeInHome}}
|
|
|
|
<strong class="file-name">{{.FileName}}</strong>
|
|
|
|
{{else}}
|
|
|
|
<strong>{{.FileName}}</strong><span class="file-size">{{FileSize .FileSize}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
<i class="icon fa fa-file-text-o"></i>
|
|
|
|
<strong class="file-name">{{.FileName}}</strong><span class="file-size">{{FileSize .FileSize}}</span>
|
|
|
|
{{end}}
|
|
|
|
</p>
|
2014-09-27 11:08:57 +02:00
|
|
|
<div class="{{if .ReadmeExist}}panel-content markdown{{end}} code-view" id="repo-code-view">
|
2014-07-26 06:24:27 +02:00
|
|
|
{{if .ReadmeExist}}
|
2014-09-13 00:29:58 +02:00
|
|
|
{{if .FileContent}}{{.FileContent | Str2html}}{{end}}
|
2014-07-27 00:37:18 +02:00
|
|
|
{{else if not .IsFileText}}
|
|
|
|
<div class="view-raw">
|
|
|
|
{{if .IsImageFile}}
|
|
|
|
<img src="{{.FileLink}}">
|
|
|
|
{{else}}
|
|
|
|
<a href="{{.FileLink}}" rel="nofollow" class="btn btn-gray btn-radius">View Raw</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
{{else if .FileSize}}
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="lines-num"></td>
|
|
|
|
<td class="lines-code"><pre class="prettyprint linenums {{if .FileExt}}lang-{{.FileExt}}{{end}}"><code>{{.FileContent}}</code></pre></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|