2f7a6b8c45
Now templates go files are in /templates in a templates package. Controllers only have controller files
11 lignes
231 o
Go
11 lignes
231 o
Go
package controllers
|
|
|
|
import (
|
|
"github.com/NyaaPantsu/nyaa/templates"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// FaqHandler : Controller for FAQ view page
|
|
func FaqHandler(c *gin.Context) {
|
|
templates.Static(c, "site/static/faq.jet.html")
|
|
}
|