Skip to content

Instantly share code, notes, and snippets.

@8parth
Created June 14, 2017 05:09
Show Gist options
  • Save 8parth/a651dd7fb0e89180ad171d5e3e4bb289 to your computer and use it in GitHub Desktop.
Save 8parth/a651dd7fb0e89180ad171d5e3e4bb289 to your computer and use it in GitHub Desktop.
layout for iterating over presentations
---
layout: page
title: Presentations
---
<div class="posts">
{% for presentation in site.presentations %}
<li>
<a href="{{ site.baseurl }}{{ presentation.url }}">
{{ post.title }}
</a>
<span class="entry-date">
<time datetime="{{ presentation.date | date_to_xmlschema }}" itemprop="datePublished">{{ presentation.date | date: site.date_format }}
</time>
</span>
</li>
{% endfor %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment