2024-05-12 10:46:00 -07:00
|
|
|
package articles
|
|
|
|
|
|
|
|
import (
|
2024-07-15 15:35:08 -07:00
|
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/templ-bulma"
|
2024-05-18 22:40:13 -07:00
|
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
|
2024-07-11 08:08:58 -07:00
|
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
2024-05-12 10:46:00 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
templ List(model models.ListArticlesViewModel) {
|
2024-07-14 09:07:16 -07:00
|
|
|
@layout.WithTemplate(model.HeaderMetaTags) {
|
2024-05-19 10:01:19 -07:00
|
|
|
@filterBar()
|
2024-05-18 22:40:13 -07:00
|
|
|
for _, item := range model.Items {
|
2024-07-11 08:08:58 -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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|