Added the index page which is used while in development.

This commit is contained in:
takezoe
2013-05-03 14:04:31 +09:00
parent 8fa1b36aa0
commit 0c3a301f24
8 changed files with 35 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
@()(implicit context: app.Context)
@import context._
@main("GitBucket"){
<h1>GitBucket</h1>
<ul>
<li><a href="@path/@context.loginUser">User page</a></li>
<li><a href="@path/new">Create new repository</a></li>
</ul>
}