aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts/page.11ty.js
blob: 53b0bd8e6fc8af46a92e68c7b087e5517873fbcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = class {
    data() {
        return {
            layout: "base",
        };
    }

    render(data) {
        return `<article>
			<h1>${data.title}</h1>
			${data.content}
		</article>`;
    }
};