2024-07-13 10:34:59 -07:00
|
|
|
package html
|
2024-07-11 08:08:58 -07:00
|
|
|
|
|
|
|
templ ALink(url, title string) {
|
|
|
|
<a href={ templ.SafeURL(url) }>{ title }</a>
|
|
|
|
}
|
|
|
|
|
|
|
|
templ ANewTab(url, text string) {
|
|
|
|
<a href={ templ.SafeURL(url) } target="_blank" rel="noopener noreferrer">{ text }</a>
|
|
|
|
}
|