shorgru/pkg/tpl/random.templ

19 lines
447 B
Text
Raw Normal View History

2024-10-06 17:04:37 +03:00
package tpl
import "sh.org.ru/pkg/model"
import "math/rand"
import "fmt"
templ Random(quotes []model.Quote) {
@Layout(HeaderParams{
Title: "Цитатник Рунета -- случайные",
Description: "Новый цитатник Рунета",
URL: "https://sh.org.ru/random",
}) {
for _, q := range quotes {
@Quote(&q)
}
<a role="button" href={templ.URL(fmt.Sprintf("/random?%d", rand.Int()))}>Обновить</a>
}
}