aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/single.tmpl
blob: 96ca95bd8ef07bb3a47446d42f4bcf6bdd330473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{template "base/head" .}}
{{template "base/navbar" .}}
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
<div id="gogs-body" class="container">
    <h4>Source Files:</h4>
    <ul>
    {{range .Files}}
        <li>{{.Name}} - {{.Type}}</li>
    {{end}}
    </ul>
</div>
{{template "base/footer" .}}