godash/components/application/application.templ

13 lines
413 B
Text
Raw Normal View History

2024-03-12 16:16:49 +01:00
package application
2024-03-12 15:49:08 +01:00
import (
"gitlab.unjx.de/flohoss/godash/services"
)
templ Application(application services.Application) {
<a href={ templ.URL(application.URL) } class="flex items-center hover-effect">
<img class={ "rounded w-8 h-8 opacity-90", templ.KV("backgroundColor",application.Background !="") } src={ application.Icon }/>
<div class="uppercase truncate ml-2">{ application.Name }</div>
</a>
}