godash/components/application.templ

21 lines
535 B
Text
Raw Normal View History

2024-03-18 16:12:25 +01:00
package components
2024-03-12 15:49:08 +01:00
2024-03-18 16:12:25 +01:00
import (
"gitlab.unjx.de/flohoss/godash/services"
)
2024-03-14 16:33:34 +01:00
2024-03-12 15:49:08 +01:00
templ Application(application services.Application) {
<a href={ templ.URL(application.URL) } class="flex items-center hover-effect">
2024-06-11 19:42:37 +02:00
<div class="w-8 h-8 dark:text-white fill-current flex items-center">
2024-06-11 11:27:17 +02:00
@templ.Raw(application.Icon)
</div>
2024-03-12 15:49:08 +01:00
<div class="uppercase truncate ml-2">{ application.Name }</div>
</a>
}
2024-03-18 16:12:25 +01:00
templ Link(link services.Link) {
<a href={ templ.URL(link.URL) } class="hover-effect">
<div class="truncate">{ link.Name }</div>
</a>
}