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