Path: blob/main/_includes/display_extra_training.md
1677 views
{% for training in include.extra_trainings %} {% if training.type == "internal" %} {% assign extra_topic_metadata = site.data[training.topic_name] %} {% assign extra_topic = site | topic_filter:training.topic_name %} {% unless training.tutorials %} {{ extra_topic_metadata.title }} {% else training.tutorials %} {% for extra_tuto in training.tutorials %} {% for topic_tuto in extra_topic %} {% if extra_tuto == topic_tuto.tutorial_name %} {% if topic_tuto.slides %} {% icon slides %} Slides: {{ topic_tuto.title }} {% endif %} {% if topic_tuto.hands_on %} {% if topic_tuto.hands_on_url %} {% icon tutorial %} Hands-on: {{ topic_tuto.title }} {% else %} {% icon tutorial %} Hands-on: {{ topic_tuto.title }} {% endif %} {% endif %} {% endif %} {% endfor %} {% endfor %} {% endunless %} {% elsif training.type == "none" %} {{ training.title }} {% else %} {{ training.title }} {% endif %} {% endfor %}