mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
23 lines
387 B
JavaScript
23 lines
387 B
JavaScript
"use strict";
|
|
|
|
var marko_template = module.exports = require("marko/html").t(__filename);
|
|
|
|
function render(input, out) {
|
|
var data = input;
|
|
|
|
out.w("<div></div>");
|
|
}
|
|
|
|
marko_template._ = render;
|
|
|
|
marko_template.meta = {
|
|
deps: [
|
|
{
|
|
type: "css",
|
|
code: ".foo{}",
|
|
virtualPath: "./index.marko.css",
|
|
path: "./index.marko"
|
|
}
|
|
]
|
|
};
|