website/views/post.hbs
2018-10-01 15:55:49 +02:00

22 lines
390 B
Handlebars

<!DOCTYPE html>
<html lang="en">
<head>
{{> head }}
<body>
{{> navbar }}
<h1>blog post</h1>
<p>{{ date }}</p>
<p>{{ category }}</p>
<article>
{{{ content }}}
</article>
<p>{{ author.name }} - {{ author.description }}</p>
<img src="{{ author.image }}">
{{> footer }}
</body>
</html>