Files
NexusV7/templates/article.hbs
2021-03-29 16:59:17 +02:00

17 lines
338 B
Handlebars

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