{% for popular-workshop in page.popular-workshops.workshops %}
{% assign currentIndex = forloop.index %}
{% assign workshop-info = site.workshops | where:"title", popular-workshop.title | first %}
{% if workshop-info.ready == true %}
{% include workshop-summary.html workshop=workshop-info index=currentIndex %}
{% endif %}
{% endfor %}
{% include workshop-catalog.html %}