package announce import ( "honoka-chan/internal/router" "html/template" "net/http" "github.com/gin-gonic/gin" ) const announceContent = `目前开发完毕的主要功能包括:

其他功能仍在开发中,有报错属于正常现象。

侵权联系:梦路_YumeMichi @bilibili 进行删除。` func index(ctx *gin.Context) { ctx.HTML(http.StatusOK, "common/announce.html", gin.H{ "title": "Love Live! 学园偶像祭", "content": template.HTML(announceContent), }) } func init() { router.AddHandler("webview.php", "GET", "/announce/index", index) }