change subdomain links to point to alin.ovh
5 files changed, 9 insertions(+), 9 deletions(-)
M internal/builder/builder.go → internal/builder/builder.go
@@ -27,7 +27,7 @@ type Options struct { Source string `conf:"default:.,short:s,flag:src"` Development bool `conf:"default:false,flag:dev"` - VCSRemoteURL config.URL `conf:"default:https://git.alanpearce.eu/website"` + VCSRemoteURL config.URL `conf:"default:https://git.alin.ovh/website"` Storage storage.Writer `conf:"-"` Repo *vcs.Repository `conf:"-"`
M internal/publisher/app.go → internal/publisher/app.go
@@ -17,7 +17,7 @@ type Options struct { Development bool `conf:"-"` BaseURL config.URL - VCSRemoteURL config.URL `conf:"default:https://git.alanpearce.eu/website"` + VCSRemoteURL config.URL `conf:"default:https://git.alin.ovh/website"` } type App struct {
M internal/publisher/templates/layout.go → internal/publisher/templates/layout.go
@@ -31,7 +31,7 @@ )), ), Main(ID("main"), g.Group(children)), Footer( - A(Href("https://git.alanpearce.eu/homestead"), g.Text("Source Code")), + A(Href("https://git.alin.ovh/homestead"), g.Text("Source Code")), ), g.If(site.InjectLiveReload, base.LiveReload), },
M internal/website/website.go → internal/website/website.go
@@ -9,8 +9,6 @@ "slices" "sync" "time" - "github.com/Southclaws/fault" - "github.com/Southclaws/fault/fmsg" "alin.ovh/homestead/internal/calendar" "alin.ovh/homestead/internal/config" "alin.ovh/homestead/internal/events"@@ -25,6 +23,8 @@ "alin.ovh/homestead/internal/storage" "alin.ovh/homestead/internal/storage/sqlite" "alin.ovh/homestead/templates" "alin.ovh/x/log" + "github.com/Southclaws/fault" + "github.com/Southclaws/fault/fmsg" "github.com/benpate/digit" "github.com/crewjam/csp"@@ -35,7 +35,7 @@ type Options struct { Root string `conf:"default:./website"` Redirect bool `conf:"default:true"` Development bool `conf:"default:false,flag:dev"` - FetchURL config.URL `conf:"default:https://ci.alanpearce.eu/archive/website/"` + FetchURL config.URL `conf:"default:https://ci.alin.ovh/archive/website/"` BaseURL config.URL CalendarURL config.URL GoatcounterToken string
M templates/layout.go → templates/layout.go
@@ -3,9 +3,9 @@ import ( "io" + "alin.ovh/homestead/internal/config" "github.com/Southclaws/fault" "github.com/alanpearce/htmlformat" - "alin.ovh/homestead/internal/config" g "alin.ovh/gomponents" . "alin.ovh/gomponents/html"@@ -81,7 +81,7 @@ ), ), Main(ID("main"), g.Group(children)), Footer( - A(Href("https://git.alanpearce.eu/website"), g.Text("Content")), + A(Href("https://git.alin.ovh/website"), g.Text("Content")), g.Text(" is "), A( Rel("license"),@@ -89,7 +89,7 @@ Href("http://creativecommons.org/licenses/by/4.0/"), g.Text("CC BY 4.0"), ), g.Text(". "), - A(Href("https://git.alanpearce.eu/homestead"), g.Text("Site source code")), + A(Href("https://git.alin.ovh/homestead"), g.Text("Site source code")), g.Text(" is "), A(Href("https://opensource.org/licenses/MIT"), g.Text("MIT")), ),