- Mingalaba
+ Welcome to HEC IA
!data.featured);
- AstroPaper is a minimal, responsive, accessible and SEO-friendly Astro
- blog theme. This theme follows best practices and provides accessibility
- out of the box. Light and dark mode are supported by default. Moreover,
- additional color schemes can also be configured.
+ At HEC IA we make AI and technology more accessible to tomorrow's
+ managers. Our goal, make people on the campus able to leverage AI to its
+ full potential.
- Read the blog posts or check
-
- README
- for more info.
+ Explore our events, workshops, latest news, and technical deep dives to
+ stay up-to-date with the latest in AI and in the tech world.
{
// only display if at least one social link is enabled
@@ -68,44 +76,111 @@ const recentPosts = sortedPosts.filter(({ data }) => !data.featured);
{
- featuredPosts.length > 0 && (
+ (featuredEvents.length > 0 || recentEvents.length > 0) && (
0 },
- ]}
+ id="events"
+ class:list={["pt-12 pb-6", "border-b border-border"]}
>
- Featured
+ Events
- {featuredPosts.map(data => (
+ {featuredEvents.map(data => (
))}
+ {recentEvents
+ .slice(0, SITE.postPerIndex - featuredEvents.length)
+ .map(data => (
+
+ ))}
+
+
+ All Events
+
+
+
)
}
{
- recentPosts.length > 0 && (
-
- Recent Posts
+ (featuredWorkshops.length > 0 || recentWorkshops.length > 0) && (
+
+ Workshops
- {recentPosts.map(
- (data, index) =>
- index < SITE.postPerIndex &&
- )}
+ {featuredWorkshops.map(data => (
+
+ ))}
+ {recentWorkshops
+ .slice(0, SITE.postPerIndex - featuredWorkshops.length)
+ .map(data => (
+
+ ))}
+
+
+ All Workshops
+
+
+
)
}
-
-
- All Posts
-
-
-
+ {
+ (featuredNews.length > 0 || recentNews.length > 0) && (
+
+ Latest News
+
+ {featuredNews.map(data => (
+
+ ))}
+ {recentNews
+ .slice(0, SITE.postPerIndex - featuredNews.length)
+ .map(data => (
+
+ ))}
+
+
+
+ All News
+
+
+
+
+ )
+ }
+
+ {
+ (featuredTechnical.length > 0 || recentTechnical.length > 0) && (
+
+
+ Technical Deep Dives
+
+
+ {featuredTechnical.map(data => (
+
+ ))}
+ {recentTechnical
+ .slice(0, SITE.postPerIndex - featuredTechnical.length)
+ .map(data => (
+
+ ))}
+
+
+
+ All Technical Articles
+
+
+
+
+ )
+ }