godash/components/link.templ
2024-03-12 15:49:08 +01:00

11 lines
224 B
Text

package components
import (
"gitlab.unjx.de/flohoss/godash/services"
)
templ Link(link services.Link) {
<a href={ templ.URL(link.URL) } class="hover-effect">
<div class="uppercase truncate">{ link.Name }</div>
</a>
}