this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Hide work cards that don't have a title

+3 -1
+3 -1
components/works_grid.templ
··· 48 48 @masonry("." + sectionName) 49 49 <section class={ sectionName, gridSection() }> 50 50 for _, work := range ortfodb.SortWorksByDate(works) { 51 - @WorkCard(work, language) 51 + if work.Content[language].Title != "" { 52 + @WorkCard(work, language) 53 + } 52 54 } 53 55 </section> 54 56 }