19 lines
447 B
Text
19 lines
447 B
Text
|
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>
|
||
|
}
|
||
|
}
|