{# Tutorial card macro #} {% macro tutorial_card(tutorial=none, title=none, description=none, href=none, slug=none, thumbnail=none, step_number=none) %} {% if tutorial is none %} {% set tutorial = { "slug": slug, "title": title, "description": description, "thumbnail": thumbnail } %} {% endif %} {% if href is none and tutorial.slug %} {% set href = url_for('web.tutorial', slug=tutorial.slug) %} {% endif %}
{% if tutorial.thumbnail %}
{{ tutorial.title }}
{% else %}
{% endif %}
{% if step_number %}

Step {{ step_number }}

{% endif %}

{{ tutorial.title }}

{{ tutorial.description or 'Learn how to use SmartTools effectively.' }}

Read More
{% endmacro %}