clustvirt/view/components/contentlist.templ
Matthew Stobbs 48bdc94351 merge barnch switch_to_templ
- Moved to templ for templating
- Started adding cluster statistics
2024-03-19 09:13:44 -06:00

16 lines
214 B
Plaintext

package components
import "fmt"
templ List(listImage string) {
<ul class={
"list-inside",
fmt.Sprintf("list-image-%s", listImage) }>
{ children... }
</ul>
}
templ ListItem() {
<li>{ children... }</li>
}