{% extends "base.html" %}
{% from "partials/learning-index.html" import learning_index %}
{% block content %}
{% let title = page?.title ?? section?.title ?? "Tutorials" %}
{% let description = page?.description ?? section?.description ?? "Hands-on guides and walkthroughs." %}
{% let items = posts ?? pages ?? page?.children ?? section?.pages ?? section?.regular_pages ?? [] %}
{{ learning_index(title, subtitle=description, items=items, content=content, eyebrow="Tutorial", eyebrow_icon="graduation-cap", item_singular="step", empty_title="No tutorials yet", empty_message="Tutorials appear here when published.", empty_icon="graduation-cap", layout="grid", card_kind="tutorial", surface="tutorial") }}
{% end %}