├── .github └── workflows │ └── docs.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── README.md ├── component ├── component.go ├── context.go ├── funcmap.go ├── future.go ├── name.go ├── state.disposable.go ├── state.go ├── state.server.go ├── state.universal.go └── use.go ├── doc.go ├── go.mod ├── go.sum ├── htmx ├── funcmap.go └── post.go ├── logo.svg └── rendering ├── funcmap.go ├── handler.go ├── renderer.go └── renderer.template.go /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/README.md -------------------------------------------------------------------------------- /component/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/component.go -------------------------------------------------------------------------------- /component/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/context.go -------------------------------------------------------------------------------- /component/funcmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/funcmap.go -------------------------------------------------------------------------------- /component/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/future.go -------------------------------------------------------------------------------- /component/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/name.go -------------------------------------------------------------------------------- /component/state.disposable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/state.disposable.go -------------------------------------------------------------------------------- /component/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/state.go -------------------------------------------------------------------------------- /component/state.server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/state.server.go -------------------------------------------------------------------------------- /component/state.universal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/state.universal.go -------------------------------------------------------------------------------- /component/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/component/use.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/go.sum -------------------------------------------------------------------------------- /htmx/funcmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/htmx/funcmap.go -------------------------------------------------------------------------------- /htmx/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/htmx/post.go -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/logo.svg -------------------------------------------------------------------------------- /rendering/funcmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/rendering/funcmap.go -------------------------------------------------------------------------------- /rendering/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/rendering/handler.go -------------------------------------------------------------------------------- /rendering/renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/rendering/renderer.go -------------------------------------------------------------------------------- /rendering/renderer.template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yznts/kyoto/HEAD/rendering/renderer.template.go --------------------------------------------------------------------------------