{% extends "base.html" %} {% from "partials/learning-index.html" import learning_index %} {% block content %} {% let title = page?.title ?? section?.title ?? "Resumes" %} {% let description = page?.description ?? section?.description ?? "Profiles, experience, and work history." %} {% let items = posts ?? pages ?? page?.children ?? section?.pages ?? section?.regular_pages ?? [] %} {{ learning_index(title, subtitle=description, items=items, content=content, eyebrow="Profiles", eyebrow_icon="briefcase", item_singular="profile", empty_title="No profiles yet", empty_message="Resume profiles appear here when published.", empty_icon="briefcase", layout="grid", card_kind="profile", surface="resume") }} {% end %}