clustvirt/view/components/anchor.templ

14 lines
221 B
Plaintext
Raw Permalink Normal View History

package components
templ A(href string, text string) {
<a href={ templ.URL(href) }>
{ text }
</a>
}
templ ANewTab(href string, text string) {
<a href={ templ.URL(href) } target="_blank">
{ text }
</a>
}