Files
NexusV7/templates/article.hbs
2022-08-21 13:44:15 +02:00

17 lines
336 B
Handlebars

<div class="contentContainer">
<article>
<h1>{{post.title}}</h1>
<h5>{{post.date_printable}}</h5>
<h6>
{{#each post.tags}}
<span>{{this}}</span>
{{/each}}
</h6>
<hr/>
{{{post.body}}}
<hr/>
<footer>
<a class="footer" href="/">glt.sx - 2022</a>
</footer>
</article>
</div>