Skip to main content
Module

x/lume/tests/assets/url/default-filter.tmpl.js

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Go to Latest
File
export const title = "Default Filter";export const url = "/default-filter/";
export default function (_, { url, htmlUrl }) { return ` <!DOCTYPE html> <html lang="en"> <head> <title>Default Filter</title> </head> <body> <a id="url" href="${url?.("/url/", true)}">Url</a> ${htmlUrl?.('<a id="htmlUrl" href="/htmlUrl/">htmlUrl</a>', true)} <template> <h1>Template content</h1> </template> </body> </html> `;}