mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
9f85b74fc9
Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
26 lines
898 B
Go
26 lines
898 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris"
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
|
|
// This will serve the ./static/favicons/favicon.ico to: localhost:8080/favicon.ico
|
|
app.Favicon("./static/favicons/favicon.ico.ico")
|
|
|
|
// app.Favicon("./static/favicons/favicon.ico.ico", "/favicon_16_16.ico")
|
|
// This will serve the ./static/favicons/favicon.ico.ico to: localhost:8080/favicon_16_16.ico
|
|
|
|
app.Get("/", func(ctx context.Context) {
|
|
ctx.HTML(`<a href="/favicon.ico"> press here to see the favicon.ico</a>.
|
|
At some browsers like chrome, it should be visible at the top-left side of the browser's window,
|
|
because some browsers make requests to the /favicon.ico automatically,
|
|
so iris serves your favicon in that path too (you can change it).`)
|
|
}) // if favicon doesn't show to you, try to clear your browser's cache.
|
|
|
|
app.Run(iris.Addr(":8080"))
|
|
}
|