title | layout |
---|---|
Precepts |
default |
This precept schedule is preliminary and subject to change.
{% assign sorted_precepts = site.data.syllabus.precepts | sort: "week" %} {% for precept in sorted_precepts %} {% if precept.hidden != true %} {% endif %} {% endfor %}Week | Precept Topic | Precept Slots | Resources |
---|---|---|---|
{% if precept.week_fixed != false %}{{ precept.week }}{% endif %} | {{ precept.topic }} |
{% assign has_one_precept_slot = false %} {% for precept_slot in site.data.syllabus.precept_slots %} {% if precept.week_fixed != false and precept_slot[1].week_map[precept.week] %} {% assign has_one_precept_slot = true %} {{ precept_slot[0] }} {% endif %} {% if has_one_precept_slot and forloop.last == false %}, {% endif %} {% endfor %} {% if precept.week_fixed == false %} To be scheduled. {% elsif has_one_precept_slot == false %} No precept slot assigned yet. {% endif %}
{% for precept_slot in site.data.syllabus.precept_slots %}
{% if precept.week_fixed != false and precept_slot[1].week_map[precept.week] %}
{{ precept_slot[0] }}:
{{ precept_slot[1].week_map[precept.week].start | date: "%a %m/%d %l:%M%P" }},
{% if precept_slot[1].week_map[precept.week].preceptor %}
{{ precept_slot[1].week_map[precept.week].preceptor }},
{% else %}
{{ precept_slot[1].preceptor }},
{% endif %}
{{ precept_slot[1].week_map[precept.week].location }}
{% if forloop.last == false %} |
{% capture precept_links %} {% for link in precept.links %} [{{ link[0] }}] {% if forloop.last == false %}, {% endif %} {% endfor %} {% endcapture %} {{ precept_links | strip_newlines }} |