Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 1.97 KB

agenda.md

File metadata and controls

59 lines (52 loc) · 1.97 KB
layout title permalink
post
Agenda
/agenda/
{% for agenda_hash in site.data.agenda %} {% assign agenda = agenda_hash[1] %}

<div class="col-md-12">
  <h3>{{ agenda.readable-date }}</h3>
</div>

{% for times in agenda.times %}


{{ times.start }} to {{ times.end }}

{% assign count = times.sessions | size %} {% assign size = 12 | divided_by: count %} {% for session in times.sessions %}

{{ session.title }} {{ session.subtitle }}

{{ session.location }}
{% for speaker in session.speakers %}

{% assign speaker_url = "#" %} {% for post in site.categories.speakers %} {% if post.title contains speaker.name %} {% assign speaker_url = post.url %} {% endif %} {% endfor %} {{ speaker.name }} {% if speaker.title %}{{ speaker.title }}{% if speaker.department %}, {% endif %}
{% if speaker.department %}{{ speaker.department }}{% endif %} {% endif %} {% if speaker.company %}{{ speaker.company }}{% endif %}

{% endfor %}
{% endfor %}
{% endfor %}

{% endfor %}