diff options
Diffstat (limited to 'www/demos/demos.md')
-rw-r--r-- | www/demos/demos.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/www/demos/demos.md b/www/demos/demos.md index 78e6e22..07b0b89 100644 --- a/www/demos/demos.md +++ b/www/demos/demos.md @@ -1,6 +1,6 @@ --- layout: prose.vto -templateEngine: eta,md +templateEngine: vto,md url: /demos/ backTo: / Missing.css --- @@ -9,10 +9,9 @@ backTo: / Missing.css # Demos -<% for (const demo of search.pages("demo")) { _%> -<% if (demo === page) continue; %> - - [<%= demo.data.name %>](<%= demo.data.url %>) -<% } %> +{{ for demo of search.pages("demo") |> filter((demo) => demo !== page) }} + - [{{ demo.data.name }}]({{ demo.data.url }}) +{{ /for }} {.list-of-links .flow-gap} </main> |