Created
June 14, 2017 05:09
-
-
Save 8parth/a651dd7fb0e89180ad171d5e3e4bb289 to your computer and use it in GitHub Desktop.
layout for iterating over presentations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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