1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

single repository page ui, add spec handler to get repo

This commit is contained in:
FuXiaoHei
2014-03-13 13:07:07 +08:00
parent b1fe498eb9
commit f65d8f9144
4 changed files with 19 additions and 28 deletions

View File

@@ -1,10 +0,0 @@
{{template "base/head" .}}
{{template "base/navbar" .}}
<div class="container" id="gogs-body">
<ul>
{{range .Files}}
<li>{{.Name}} - {{.Type}}</li>
{{end}}
</ul>
</div>
{{template "base/footer" .}}

View File

@@ -33,6 +33,11 @@
</div>
{{template "repo/toolbar" .}}
<div id="gogs-body" class="container">
repo single dashboard
<h4>Source Files:</h4>
<ul>
{{range .Files}}
<li>{{.Name}} - {{.Type}}</li>
{{end}}
</ul>
</div>
{{template "base/footer" .}}