htmgo/htmgo-site/pages/docs/index.go
maddalax 35877a1b2e
New Docs (#63)
* scripting enhancements

* tests

* cleanup / tests

* new docs wip

* add more docs

* more updates

* add caching docs

* add sse docs

* more docs

* sidebar, and fix navigation blocks

* remove old docs

* set proper meta

* fixes
2024-10-30 13:27:42 -05:00

8 lines
171 B
Go

package docs
import "github.com/maddalax/htmgo/framework/h"
func Index(ctx *h.RequestContext) *h.Page {
ctx.Redirect("/docs/introduction", 302)
return h.EmptyPage()
}