65 lines
1.7 KiB
Go
65 lines
1.7 KiB
Go
/*
|
|
|
|
* website | MatterLinux Official Website
|
|
* MatterLinux 2023-2024 (https://matterlinux.xyz)
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"git.matterlinux.xyz/Matter/website/lib"
|
|
"git.matterlinux.xyz/Matter/website/routes"
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/gofiber/template/html/v2"
|
|
)
|
|
|
|
func main(){
|
|
log.SetFlags(log.Lshortfile | log.Ltime)
|
|
|
|
engine := html.New("./templates", ".html")
|
|
app := fiber.New(fiber.Config{
|
|
DisableStartupMessage: true,
|
|
Views: engine,
|
|
})
|
|
app.Static("/", "./public")
|
|
app.Static("/assets", "./content/assets")
|
|
|
|
app.Get("/", routes.IndexRoute)
|
|
app.Get("/download", routes.DownloadRoute)
|
|
|
|
app.Get("/news", routes.NewsRoute)
|
|
app.Get("/news/:id", routes.PostRoute)
|
|
|
|
app.Get("/wiki", routes.WikiMainRoute)
|
|
app.Get("/wiki/:id", routes.WikiRoute)
|
|
|
|
app.Get("/hub", routes.ConfigsRoute)
|
|
app.Get("/hub/:id", routes.ConfigRoute)
|
|
|
|
app.Get("*", func(c *fiber.Ctx) error {
|
|
return lib.RenderError(c, 404)
|
|
})
|
|
|
|
log.Println("Starting MatterLinux Website on port 9878")
|
|
err := app.Listen(":9878")
|
|
if err != nil {
|
|
log.Fatalf("Error starting server: %s", err)
|
|
}
|
|
}
|