mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-07-10 22:41:55 -05:00
23 lines
437 B
Handlebars
23 lines
437 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{> head }}
|
|
<body>
|
|
{{> navbar }}
|
|
|
|
<h1>{{ post.title }}</h1>
|
|
<p>{{ post.date }}</p>
|
|
<p>{{ post.category }}</p>
|
|
|
|
<article>
|
|
{{{ post.content }}}
|
|
</article>
|
|
|
|
<p>{{ post.author.name }} - {{ post.author.description }}</p>
|
|
<img src="{{ post.author.profilePicture }}">
|
|
|
|
{{> footer }}
|
|
|
|
</body>
|
|
</html>
|