iris/_examples/sitemap/main.go
Gerasimos (Makis) Maropoulos 04477c3e41 fixes, i18n, sitemap generator and new examples
Former-commit-id: 54801dc705ee0fa66232f65063f8a68c9cc31921
2019-12-13 23:06:18 +02:00

39 lines
975 B
Go

package main
import (
"time"
"github.com/kataras/iris/v12"
)
const startURL = "http://localhost:8080"
func main() {
app := newApp()
// http://localhost:8080/sitemap.xml
// Lists only online GET static routes.
//
// Reference: https://www.sitemaps.org/protocol.html
app.Run(iris.Addr(":8080"), iris.WithSitemap(startURL))
}
func newApp() *iris.Application {
app := iris.New()
app.Logger().SetLevel("debug")
lastModified, _ := time.Parse("2006-01-02T15:04:05-07:00", "2019-12-13T21:50:33+02:00")
app.Get("/home", handler).SetLastMod(lastModified).SetChangeFreq("hourly").SetPriority(1)
app.Get("/articles", handler).SetChangeFreq("daily")
app.Get("/path1", handler)
app.Get("/path2", handler)
app.Post("/this-should-not-be-listed", handler)
app.Get("/this/{myparam}/should/not/be/listed", handler)
app.Get("/this-should-not-be-listed-offline", handler).SetStatusOffline()
return app
}
func handler(ctx iris.Context) { ctx.WriteString(ctx.Path()) }