package tpl import ( "sh.org.ru/pkg/config" "sh.org.ru/pkg/middleware" "sh.org.ru/pkg/model" ) templ Random(quotes []model.Quote) { {{ host := ctx.Value(middleware.ContextKey("config")).(*config.Config).Host }} @Layout(HeaderParams{ Title: "Цитатник Рунета", Description: "Новый цитатник Рунета", URL: host, }) {
for _, q := range quotes { @Quote(&q) } Загрузить ещё... Загрузка...
} }