newsbot-portal/internal/views/articles/list.templ

18 lines
527 B
Plaintext
Raw Normal View History

2024-05-12 10:46:00 -07:00
package articles
import (
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/bulma"
2024-05-12 10:46:00 -07:00
)
templ List(model models.ListArticlesViewModel) {
@layout.WithTemplate() {
2024-05-19 10:01:19 -07:00
@filterBar()
for _, item := range model.Items {
@bulma.ArticleCardWithThumbnail(item.Article.Title, item.Article.Thumbnail, item.Article.Url, item.Article.PubDate.String(), item.Source.DisplayName )
}
}
}