You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/index.astro
+37-32Lines changed: 37 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,11 @@ import type { Conference } from '../types/conference'
14
14
15
15
// 最新の3件のブログ記事を取得
16
16
const latestPosts =awaitgetPosts(3)
17
+
18
+
// 最新のイベント(status == 'registered')を取得
19
+
const latestEvents =Conferences?.filter(
20
+
(conference) =>conference.status=='registered',
21
+
) || []
17
22
---
18
23
19
24
<Layouttitle="CloudNative Days"description="CloudNative Days はコミュニティ、企業、技術者が一堂に会し、クラウドネイティブムーブメントを牽引することを目的としたテックカンファレンスです。"ogImage="/favicon.svg"isTopPage={true}>
0 commit comments