Implementing an individual page per article
We have the opportunity to create a page that renders an entire article, which will be the basis for the entire commenting system.
We create the template in app/website/templates/pages/single_post.html with basic but sufficient HTML for the minimum Post fields:
<section>
{# Post #}
<article>
<header>
<h1>{{ post.title }}</h1>
</header>
<div>{{ post.content }}</div>
<footer>
<p>{{ post.author }}</p>
</footer>
</article...