clustvirt/view/components/contentlist.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

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