diff --git a/basic/main.go b/basic/main.go index 2edec17..9e3c6d1 100644 --- a/basic/main.go +++ b/basic/main.go @@ -4,10 +4,10 @@ import ( "log" "github.com/FooSoft/goldsmith" - "github.com/FooSoft/goldsmith-devserver" - "github.com/FooSoft/goldsmith-plugins/plugins/frontmatter" - "github.com/FooSoft/goldsmith-plugins/plugins/layout" - "github.com/FooSoft/goldsmith-plugins/plugins/markdown" + "github.com/FooSoft/goldsmith-components/devserver" + "github.com/FooSoft/goldsmith-components/plugins/frontmatter" + "github.com/FooSoft/goldsmith-components/plugins/layout" + "github.com/FooSoft/goldsmith-components/plugins/markdown" ) type builder struct{} diff --git a/bootstrap/main.go b/bootstrap/main.go index 08b92f3..b6ca4be 100644 --- a/bootstrap/main.go +++ b/bootstrap/main.go @@ -26,18 +26,18 @@ import ( "log" "github.com/FooSoft/goldsmith" - "github.com/FooSoft/goldsmith-devserver" - "github.com/FooSoft/goldsmith-plugins/plugins/breadcrumbs" - "github.com/FooSoft/goldsmith-plugins/plugins/collection" - "github.com/FooSoft/goldsmith-plugins/plugins/dom" - "github.com/FooSoft/goldsmith-plugins/plugins/frontmatter" - "github.com/FooSoft/goldsmith-plugins/plugins/index" - "github.com/FooSoft/goldsmith-plugins/plugins/layout" - "github.com/FooSoft/goldsmith-plugins/plugins/markdown" - "github.com/FooSoft/goldsmith-plugins/plugins/paginate" - "github.com/FooSoft/goldsmith-plugins/plugins/syntax" - "github.com/FooSoft/goldsmith-plugins/plugins/tags" - "github.com/FooSoft/goldsmith-plugins/plugins/thumbnail" + "github.com/FooSoft/goldsmith-components/devserver" + "github.com/FooSoft/goldsmith-components/plugins/breadcrumbs" + "github.com/FooSoft/goldsmith-components/plugins/collection" + "github.com/FooSoft/goldsmith-components/plugins/dom" + "github.com/FooSoft/goldsmith-components/plugins/frontmatter" + "github.com/FooSoft/goldsmith-components/plugins/index" + "github.com/FooSoft/goldsmith-components/plugins/layout" + "github.com/FooSoft/goldsmith-components/plugins/markdown" + "github.com/FooSoft/goldsmith-components/plugins/paginate" + "github.com/FooSoft/goldsmith-components/plugins/syntax" + "github.com/FooSoft/goldsmith-components/plugins/tags" + "github.com/FooSoft/goldsmith-components/plugins/thumbnail" "github.com/PuerkitoBio/goquery" )