Added terms of service

This commit is contained in:
2017-11-17 12:08:16 +01:00
parent 7ea735ac46
commit 7c9d1c3c31
4 changed files with 71 additions and 0 deletions

11
pages/terms/terms.go Normal file
View File

@ -0,0 +1,11 @@
package terms
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
)
// Get ...
func Get(ctx *aero.Context) string {
return ctx.HTML(components.TermsOfService())
}