--- layout: default permalink: upcoming.html title: Upcoming Topics --- {% assign today_date = 'now' | date: '%s' %} {% include navigation.html static_navigation="upcoming" %}
{% for topic in site.topics %} {% assign topic_date = topic.date | date: '%s' %} {% if topic_date <= today_date %}

{{ topic.title }}

Presenters: {{ topic.speakers }}
{{ topic.content | truncate: 1200 }}
{% assign has_content = true %} {% endif %} {% endfor %} {% unless has_content %}

There are currently no upcoming Topics scheduled.

{% endunless %}