/* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2026 metamuffin */ use crate::{RenderInfo, components::node_card::NodeCard}; use jellycommon::{jellyobject::Object, *}; markup::define! { NodeList<'a>(ri: &'a RenderInfo<'a>, nl: Object<'a>) { ul.nl.grid { @for nku in nl.iter(NODELIST_ITEM) { li { @NodeCard { ri, nku } } }} } }