summaryrefslogtreecommitdiffstats
path: root/templates/repo/single_file.tmpl
blob: 40ef44eb1b6b43b2a0e6ecee904e35c1ef957f55 (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 code-view">
                <table>
                    <tbody>
                        <tr>
                            <td class="lines-num"></td>
                            <td class="lines-code markdown"><pre class="prettyprint linenums lang-{{.FileExt}}">{{.FileContent}}</pre></td>
                        </tr>
                    </tbody>
                </table>
            </div>
        {{end}}
    {{end}}
</div>