Skip to content

Instantly share code, notes, and snippets.

@shailen-naidoo
Created July 29, 2019 10:44
Show Gist options
  • Save shailen-naidoo/94d7de3b66d54730dc0b5d449a6eb7d4 to your computer and use it in GitHub Desktop.
Save shailen-naidoo/94d7de3b66d54730dc0b5d449a6eb7d4 to your computer and use it in GitHub Desktop.
const page = ({ title, text, dev }) => `
<!DOCTYPE html>
<html>
<head>
<title>${title}</title>
</head>
<body>
<p>${text}</p>
</body>
</html>
`;
module.exports = {
title: 'Hydrogen',
page,
data: () => ({
text: 'Hydrogen: Static-site generator',
}),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment