Added extra navigation and new pages

This commit is contained in:
2017-06-18 17:16:40 +02:00
parent 1a7fb673c0
commit e99225ce10
11 changed files with 141 additions and 10 deletions

18
pages/admin/admin.go Normal file
View File

@ -0,0 +1,18 @@
package admin
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get admin page.
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil || user.Role != "admin" {
return ctx.Redirect("/")
}
return ctx.HTML(components.Admin(user))
}

6
pages/admin/admin.pixy Normal file
View File

@ -0,0 +1,6 @@
component Admin(user *arn.User)
h2.page-title Admin
table
tr
td Go version:
td= runtime.Version()