Instructional Videos
{% comment %} Build the category-select menu options:
-
get tags from data files
-
put them in one big list, get uniq values
-
build the options list to add to the select form below {% endcomment %} {% assign tagList = "" | split: "" %} {% if site.data.instruction-vids %} {% for vid in site.data.instruction-vids %} {% if vid.tags contains “ShowThis” %} {% assign thisTags = vid.tags | split: ”,” %} {% assign tagList = tagList | concat: thisTags %} {% endif %} {% endfor %} {% assign tagList = tagList | uniq | sort %} {% assign options = "" %} {% for tag in tagList %} {% if tag != "" and tag != “ShowThis” and tag != “Fall 2020” %} {% capture opt %}
{% endcapture %} {% assign options = options | append: opt %} {% endif %} {% endfor %}{% comment %} Get starting count of videos to be displayed {% endcomment %} {% assign allVidCount = 0 %} {% for vid in site.data.instruction-vids %} {% if vid.tags contains “ShowThis” %} {% assign allVidCount = allVidCount | plus: 1 %} {% endif %} {% endfor %}
{% else %} {% assign allVidCount = 0 %} {% endif %}
{% if site.data.instruction-vids %}
Unable to load content.
Please see our YouTube channel for our instructional videos.
