diff --git a/cmd/web/app-links.go b/cmd/web/app-links.go index 8af8af8..d5a8d64 100644 --- a/cmd/web/app-links.go +++ b/cmd/web/app-links.go @@ -40,7 +40,7 @@ func getStarterLinks(baseUri string) []AppLink { Title: "User Management", Description: "Create and Manage Users", Image: "/static/img/users.png", - Url: "https://panel." + baseUri, + Url: "https://panel." + baseUri + "/log_in/", }, { Title: "Nextcloud", @@ -75,7 +75,7 @@ func getCreatorLinks(baseUri string) []AppLink { Title: "Wordpress", Description: "Your website", Image: "/static/img/wordpress.png", - Url: "https://" + baseUri, + Url: "https://" + baseUri + "/wp-admin", }, } @@ -137,7 +137,7 @@ func getEnterpriseLinks(baseUri string) []AppLink { Title: "Castopod", Description: "Podcast Distribution", Image: "/static/img/castopod.png", - Url: "https://castopod." + baseUri, + Url: "https://castopod." + baseUri + "/cp-auth/login", }, } diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html index c637334..709c65c 100644 --- a/ui/html/base.tmpl.html +++ b/ui/html/base.tmpl.html @@ -19,6 +19,7 @@ {{template "main" .}} diff --git a/ui/static/css/styles.css b/ui/static/css/styles.css index 8217476..7d3d4c1 100644 --- a/ui/static/css/styles.css +++ b/ui/static/css/styles.css @@ -150,6 +150,8 @@ h1 { text-align: center; } -.footer__excerpt { +.footer__excerpt, +.footer__kitty { grid-column: 2/3; + justify-self: center; } \ No newline at end of file diff --git a/ui/static/img/kitty.png b/ui/static/img/kitty.png new file mode 100644 index 0000000..c001187 Binary files /dev/null and b/ui/static/img/kitty.png differ