aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/single_file.tmpl
blob: 7bca626aaa3335f01115dc8e32abf1c21b33774a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="panel panel-default file-content">
    <div class="panel-heading file-head">
        {{if .ReadmeExist}}
            <i class="icon fa fa-book"></i>
        {{else}}
            <i class="icon fa fa-file-text-o"></i>
        {{end}}{{.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 file-code">
                <table>
                    <tbody>
                        <tr>
                            <td class="lines-num"></td>
                            <td class="lines-code markdown"><pre class="linenums lang-{{.FileExt}}"><code>{{.FileContent}}</code></pre></td>
                        </tr>
                    </tbody>
                </table>
            </div>
        {{end}}
    {{end}}
</div>