zachleat@zachleat.com’s Mastodon Archive

well—sure, why not?

page.njk file contents:

---javascript
const myKey = "HELLO FROM FRONT MATTER";

function alwaysBlue() {
	return "blue";
}
---
<span>{{ myKey }}</span>
<span>{{ alwaysBlue() }}</span>