Compare commits

..

No commits in common. "470624552de98dff46105ac5b382cde8675e7934" and "fbfee0edaa3dba0d5ab190c54a3753dd1374404e" have entirely different histories.

6 changed files with 11 additions and 31 deletions

View File

@ -1,10 +1,5 @@
package main
import (
"slices"
"strings"
)
type AppLink struct {
Title string
Url string
@ -13,34 +8,24 @@ type AppLink struct {
}
func getAppLinks(tier, baseUri string) []AppLink {
var output []AppLink
//Get Links Based on Tier
if tier == "enterprise" {
output = getEnterpriseLinks(baseUri)
return getEnterpriseLinks(baseUri)
} else if tier == "creator" {
output = getCreatorLinks(baseUri)
return getCreatorLinks(baseUri)
} else if tier == "teams" {
output = getTeamsLinks(baseUri)
} else {
output = getStarterLinks(baseUri)
return getTeamsLinks(baseUri)
}
//Sort in alphabetical order
slices.SortFunc(output, func(a, b AppLink) int {
return strings.Compare(a.Title, b.Title)
})
return output
return getStarterLinks(baseUri)
}
func getStarterLinks(baseUri string) []AppLink {
return []AppLink {
{
Title: "User Management",
Description: "Create and Manage Users",
Description: "Create users and manage their access",
Image: "/static/img/users.png",
Url: "https://panel." + baseUri + "/log_in/",
Url: "https://panel." + baseUri,
},
{
Title: "Nextcloud",
@ -75,7 +60,7 @@ func getCreatorLinks(baseUri string) []AppLink {
Title: "Wordpress",
Description: "Your website",
Image: "/static/img/wordpress.png",
Url: "https://" + baseUri + "/wp-admin",
Url: "https://" + baseUri,
},
}
@ -137,7 +122,7 @@ func getEnterpriseLinks(baseUri string) []AppLink {
Title: "Castopod",
Description: "Podcast Distribution",
Image: "/static/img/castopod.png",
Url: "https://castopod." + baseUri + "/cp-auth/login",
Url: "https://castopod." + baseUri,
},
}

View File

@ -5,10 +5,8 @@ import (
)
func (app *application) home(writer http.ResponseWriter, request *http.Request) {
appLinks := getAppLinks(app.tier, app.host)
data := templateData{
AppLinks: appLinks,
AppLinks: getAppLinks(app.tier, app.host),
Tier: app.tier,
BaseUri: app.host,
}

View File

@ -19,7 +19,6 @@
{{template "main" .}}
</main>
<footer class="footer main-grid">
<img class="footer__kitty" src="/static/img/kitty.png" alt="">
<p class="footer__excerpt">Powered by <a href="https://www.federated.computer">Federated Computer</a></p>
</footer>
</body>

View File

@ -6,7 +6,7 @@
<div class="app-links-container">
<!-- LOOP HERE -->
{{range .AppLinks}}
<a href="{{.Url}}" class="app-link-card-link" target="_blank">
<a href="{{.Url}}" class="app-link-card-link">
<div class="app-link-card">
<img src="{{.Image}}" alt="" class="app-link-card__image">
<h3 class="app-link-card__title">{{.Title}}</h3>

View File

@ -150,8 +150,6 @@ h1 {
text-align: center;
}
.footer__excerpt,
.footer__kitty {
.footer__excerpt {
grid-column: 2/3;
justify-self: center;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB