mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2026-01-02 08:59:39 +05:00
9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
package templates
|
|
|
|
import "github.com/maid-zone/soundcloak/lib/sc"
|
|
|
|
templ SearchTracks(p *sc.Paginated[sc.Track]) {
|
|
for _, track := range p.Collection {
|
|
<h1>{track.Title}</h1>
|
|
}
|
|
} |