picanhajs
Version:
A tasty website static generator
25 lines (21 loc) • 353 B
HTML
<html>
<head>
<title>Blog</title>
{{> includes}}
</head>
<body>
{{> header}}
{{#post}}
<article class="wrapper post">
<div class="post-header">
<h2 class="post-title">{{title}}</h2>
<h3>Author: {{author.name}}</h3>
</div>
<div class="post-content">
{{{body}}}
</div>
</article>
{{/post}}
</body>
</html>