package components import ( "github.com/delaneyj/gomponents-iconify/iconify/mdi" g "github.com/maragudk/gomponents" . "github.com/maragudk/gomponents/html" b "github.com/willoma/bulma-gomponents" e "github.com/willoma/gomplements" "portfolio/web/types" ) func ProjectList(projects []types.Project) g.Node { return Div(Class("py-2 px-2"), g.Group(g.Map(projects, func(p types.Project) g.Node { return Project(p) })), ) } func Project(project types.Project) g.Node { return b.Card( b.Media( b.MediaLeft( b.ImageImg( project.ImageUrl, e.Alt("project image"), b.ImgSq64, ), ), b.Title(4, project.Name), b.Subtitle(6, A(Class("flex"), Href(project.Url), mdi.Github(), g.Text("checkout repo"))), ), b.Content( project.Description, ), ) }