We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe23d0f commit acaa4f8Copy full SHA for acaa4f8
src/layouts/EventsLayout.astro
@@ -25,7 +25,11 @@ setJumpToState(null);
25
<BaseLayout title="Events" variant="item" topic="community">
26
<section>
27
<ul class="content-grid-simple">
28
- {entries.map((entry) => <GridItemEvent item={entry} />)}
+ {entries.map((entry) => (
29
+ <li>
30
+ <GridItemEvent item={entry} />
31
+ </li>
32
+ ))}
33
</ul>
34
<PaginationNav
35
maxNumItems={totalNumEvents}
0 commit comments