clustvirt/view/components/anchor.templ
Matthew Stobbs 5fd215d6dd nav bar!
Added a navbar that doesn't do anything to the homepage
2024-03-15 16:48:11 -06:00

14 lines
221 B
Plaintext

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>
}