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.
20 lines
604 B
20 lines
604 B
<div class="panel panel-default file-content"> |
|
<div class="panel-heading file-head"> |
|
<i class="icon fa fa-book"></i> {{.FileName}} |
|
</div> |
|
{{if .FileIsLarge}} |
|
<div class="panel-footer"> |
|
Large file size 1000kb |
|
</div> |
|
{{else}} |
|
{{if .ReadmeExist}} |
|
<div class="panel-body file-body markdown"> |
|
{{.FileContent|str2html}} |
|
</div> |
|
{{else}} |
|
<div class="panel-body file-body markdown"> |
|
<pre><code>{{.FileContent}}</code></pre> |
|
</div> |
|
{{end}} |
|
{{end}} |
|
</div> |