2024-10-06 17:04:37 +03:00
|
|
|
package tpl
|
|
|
|
|
2024-10-07 04:18:59 +03:00
|
|
|
import (
|
|
|
|
"sh.org.ru/pkg/model"
|
|
|
|
)
|
2024-10-06 17:04:37 +03:00
|
|
|
|
|
|
|
templ Random(quotes []model.Quote) {
|
2024-10-07 04:18:59 +03:00
|
|
|
for _, q := range quotes {
|
|
|
|
@Quote(&q)
|
2024-10-06 17:04:37 +03:00
|
|
|
}
|
2024-10-07 04:18:59 +03:00
|
|
|
<a role="button" hx-get="/random" hx-swap="outerHTML">Загрузить ещё...</a>
|
2024-10-06 17:04:37 +03:00
|
|
|
}
|