{% extends "base.html" %} {% block content %}

{{ title }}

by {{ author }} in {{ category }} > {{ channel }}

{{ views }} Views, {{ favorites }} Favorites, {{ comment_count }} Comments

{% for step in steps %}

{{ step.title }}

{% if step.imgs %}
{% for step_img in step.imgs %}
{{ step_img.alt }}
{% endfor %}
{% endif %} {% if step.videos %}
{% for step_video in step.videos %}
{% endfor %}
{% endif %} {% if step.iframes %}
{% for step_iframe in step.iframes %}
{% endfor %}
{% endif %}
{{ step.text|safe }}
{% if step.downloads %}

Downloads

{% for step_download in step.downloads %} {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}