diff --git a/_layouts/frontpage.html b/_layouts/frontpage.html
index aed60edaeba1484b4e68583ccb40837756c1d4f6..ca3f9137c6de3c05b951ee24f6392ce851da59c0 100644
--- a/_layouts/frontpage.html
+++ b/_layouts/frontpage.html
@@ -52,6 +52,35 @@
                 <a href="{{ 'news/' | relative_url }}" class="btn btn-outline-secondary">More HIFIS News</a>
             </section>
         </div>
+        
+        <div class="frontpage-jumbotron">
+            <section>
+                <h1><i class="far fa-calendar-alt" aria-hidden="true"></i>&nbsp; Events</h1>
+                <div class="flex-content-wrapper">
+                    {% assign sorted_events = site.events | sort: "start.date" %}
+                    {% assign today = "now" | date: "%Y-%m-%d" %}
+                    {% assign has_upcoming_events = false %}
+                    {% for event in sorted_events %}
+                        {% if event.start.date < today or
+                              event.registration_period.to < today %}
+                            {% continue %}
+                        {% else %}
+                            {% assign has_upcoming_events = true %}
+                        {% endif %}
+                        {% include frontpage/event-card.html
+                              title = event.excerpt %}
+                    {% endfor %}
+                    {% if has_upcoming_events == false %}
+                        <article class="list-entry">
+                            <h1>
+                                There are no upcoming events right now ... stay tuned.
+                            </h1>
+                        </article>
+                    {% endif %}
+                </div>
+            </section>
+        </div>        
+        
         <div class="transition-block">
 
             {% include transition.html direction="top" %}