```dataviewjs
// Get pages and sort alphabetically by filename
const pages = dv.pages("#excalidraw")
.where(p => p.file.name.includes("icon -"))
.sort(p => p.file.name);
// Apply grid styles to the container
dv.container.style.display = "grid";
dv.container.style.gridTemplateColumns = "repeat(auto-fill, minmax(160px, 1fr))";