mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
<div class="panel panel-radius" id="repo-readme"> |
|
<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> |
|
<div class="{{if .ReadmeExist}}panel-content markdown{{end}} code-view"> |
|
{{if .ReadmeExist}} |
|
{{.FileContent | Str2html}} |
|
{{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> |