18 lines
527 B
Plaintext
18 lines
527 B
Plaintext
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"
|
|
)
|
|
|
|
templ List(model models.ListArticlesViewModel) {
|
|
@layout.WithTemplate() {
|
|
@filterBar()
|
|
for _, item := range model.Items {
|
|
@bulma.ArticleCardWithThumbnail(item.Article.Title, item.Article.Thumbnail, item.Article.Url, item.Article.PubDate.String(), item.Source.DisplayName )
|
|
|
|
}
|
|
}
|
|
}
|