aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/single_file.tmpl
blob: f74e09de09bfe80c7d0690938b0db2a3501dfb91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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|str2html}}</code></pre>
            </div>
        {{end}}
    {{end}}
</div>