{% include head.html %}
black@training:~$
./current-section
{% for section in site.data.courses[page.course].content %}
{% if section.title == page.section %}
{% assign curSec = section %}
{{ section.title }}
{% for lesson in section.contents %}
{{ lesson.name }}
{% endfor %}
{% endif %}
{% endfor %}
black@training:~$
./display-content
{{ page.content | markdownify }}
black@training:~$
./course-url
{{
site.data.courses[page.course].title }}
{% include footer.html %}