layouts/shortcodes/events.html (7 lines of code) (raw):
{{ .Inner | markdownify}}
{{ range first 1 (where .Site.Pages "Section" "events") }}
<div class="home-event-li">
<h4>{{ .LinkTitle }}</h4>
<p><a href="{{ .RelPermalink }}">{{ .Plain | safeHTML | truncate 76 }}</a></p>
</div>
{{ end }}