Skip to main content
Module

x/lume/tests/assets/module/multiple.tmpl.js

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Go to Latest
File
export const tags = ["multiple"];export const layout = "layout.tmpl.js";
export default function* () { const pages = [1, 2, 3];
for (const page of pages) { const content = { url: `/multiple/${page}.html`, content: `Content page ${page}`, };
// The first page has a custom title if (page === 1) { content.title = "Page 1"; }
yield content; }}