move package to new domain
1 file changed, 7 insertions(+), 7 deletions(-)
changed files
M README.md → README.md
@@ -2,10 +2,10 @@ # Tired of complex template languages? <img src="logo.png" alt="Logo" width="300" align="right"> -[](https://pkg.go.dev/go.alanpearce.eu/gomponents) +[](https://pkg.go.dev/alin.ovh/gomponents) [](https://github.com/alanpearce/gomponents/actions/workflows/ci.yml) [](https://codecov.io/gh/alanpearce/gomponents) -[](https://goreportcard.com/report/go.alanpearce.eu/gomponents) +[](https://goreportcard.com/report/alin.ovh/gomponents) Try HTML components in pure Go.@@ -14,7 +14,7 @@ They render to HTML 5, and make it easy for you to build reusable components. So you can focus on building your app instead of learning yet another templating language. ```shell -go get go.alanpearce.eu/gomponents +go get alin.ovh/gomponents ``` Made with ✨sparkles✨ by [maragu](https://www.maragu.dev/), forked by [alanpearce](https://alanpearce.eu) to add helpers.@@ -46,16 +46,16 @@ ## Usage ```shell -go get go.alanpearce.eu/gomponents +go get alin.ovh/gomponents ``` ```go package main import ( - . "go.alanpearce.eu/gomponents" - . "go.alanpearce.eu/gomponents/components" - . "go.alanpearce.eu/gomponents/html" + . "alin.ovh/gomponents" + . "alin.ovh/gomponents/components" + . "alin.ovh/gomponents/html" ) func Navbar(authenticated bool, currentPath string) Node {