{{ page.title }}
{% if page.description %}{{ page.description }}
{% endif %} {% if page.overview %}Lab Overview
{{ page.overview | markdownify }}
{% endif %}
{% if page.author %}
{% if page.author.first %}Authors:{% else %}Author:{% endif %}
{% if page.author.first %}
{% assign author_count = page.author.size %}
{% for author in page.author %}
{% if forloop.last and author_count > 1 %}and {% endif %}{{ author }}{% unless forloop.last %}, {% endunless %}
{% endfor %}
{% else %}
{{ page.author }}
{% endif %}
{% endif %}
{% if page.license %}
License: {{ page.license }}
{% endif %}
{% if page.difficulty %}
Difficulty: {{ page.difficulty }}
{% endif %}
{% if page.duration %}
Estimated Duration: {{ page.duration }}
{% endif %}
{% if page.prerequisites %}
Prerequisites: {{ page.prerequisites }}
{% endif %}
{% if page.cybok %}
CyBOK Knowledge Areas:
{% for cybok_item in page.cybok %}
{{ cybok_item.ka }}: {{ cybok_item.topic }}
{% for keyword in cybok_item.keywords %}
{{ keyword }}
{% endfor %}
{% endfor %}
{% endif %}
{% if page.tags %}
Tags:
{% for tag in page.tags %}
{{ tag }}
{% endfor %}
{% endif %}