{% if title %}

{{ title }}

{% endif %}{% if not items %}
No schedule items yet — add a time block to get started.
{% else %}
    {% for item in items %}
  1. {% if item.time %}{{ item.time }}{% else %}--:--{% endif %}{% if item.activity %}{{ item.activity }}{% else %}Activity{% endif %}
  2. {% endfor %}
{% endif %}