2024-06-25 17:35:30 +00:00
|
|
|
{{define "title"}}Home{{end}}
|
|
|
|
|
|
|
|
{{define "main"}}
|
2024-06-25 20:17:08 +00:00
|
|
|
<section class="app-links">
|
2024-07-01 22:14:06 +00:00
|
|
|
<h2 class="app-links-title">Apps for {{.BaseUri}} on the {{.Tier}} plan:</h2>
|
2024-06-25 20:17:08 +00:00
|
|
|
<div class="app-links-container">
|
|
|
|
<!-- LOOP HERE -->
|
2024-06-25 21:28:39 +00:00
|
|
|
{{range .AppLinks}}
|
2024-06-28 14:59:05 +00:00
|
|
|
<a href="{{.Url}}" class="app-link-card-link" target="_blank">
|
2024-06-25 21:28:39 +00:00
|
|
|
<div class="app-link-card">
|
|
|
|
<img src="{{.Image}}" alt="" class="app-link-card__image">
|
|
|
|
<h3 class="app-link-card__title">{{.Title}}</h3>
|
|
|
|
<p class="app-link-card__description">{{.Description}}</p>
|
2024-07-01 22:14:06 +00:00
|
|
|
{{with .DocumentationUrl}}
|
|
|
|
<p><a href="{{.}}" class="documentation-link" target="_blank">Documentation</a></p>
|
|
|
|
{{end}}
|
|
|
|
{{if .LDAP}}
|
|
|
|
<p class="app-link-card__ldap-notice">*Users Managed Via Panel</p>
|
|
|
|
{{else}}
|
|
|
|
<p class="app-link-card__ldap-notice">*Users Not Managed Via Panel</p>
|
|
|
|
{{end}}
|
|
|
|
{{with .SpecialNote}}
|
|
|
|
<p class="app-link-card__ldap-notice">*{{.}}</p>
|
|
|
|
{{end}}
|
2024-06-25 21:28:39 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2024-06-25 20:17:08 +00:00
|
|
|
</div>
|
2024-06-26 15:55:05 +00:00
|
|
|
<p class="app-links-attribution">All Logos are Property of Their Respective Project</p>
|
2024-06-25 20:17:08 +00:00
|
|
|
</section>
|
2024-06-25 17:35:30 +00:00
|
|
|
{{end}}
|