template.js
1// Pretend generator: reads source content, writes HTML into dist/.
2// Not executed by the test — it only exists so the fixture has a "source"
3// that the agent could reason about when picking where to write variants.
4export function render(title, body) {
5 return `<!DOCTYPE html>
6<html><head><title>${title}</title></head>
7<body>${body}</body></html>`;
8}