Skip to main content
Module

x/lume/tests/assets/render_order/pages.tmpl.ts

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Go to Latest
File
export default function* () { const pages = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
for (const page of pages) { yield { title: page, url: `/articles/${page}/`, }; }}