Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 797 Bytes

b_events.md

File metadata and controls

32 lines (23 loc) · 797 Bytes
layout title permalink
page
Events
/events/

{% for event in site.categories.events limit:5 %}

<header class="post-header">
  <h1 itemprop="name" class="post-title">
    <a itemprop="url" class="post-link" href="{{ event.url | prepend: site.baseurl | prepend: event.baseurl }}">{{ event.title }}</a>
  </h1>
  <time itemprop="datePublished" datetime="{{ event.date | date: '%Y-%m-%d' }}">
  {{ site.locales[site.default_locale].PostDate }}{{ event.date | date: "%b %-d, %Y" }}
  </time>
  </p>
</header>

<article class="post-content" itemprop="articleBody">
  {{ event.longexcerpt }}
</article> <hr />

{% endfor %}