<%- include('partials/top') %>
<main class="h5 mb-5" role="main">
	<h1><%= title %></h1>
	<p><strong>Description:</strong> <%= description %></p>
	<p><strong>By:</strong> <%= author %> | <time datetime="<%= published %>"><%= new Date(published).toLocaleDateString() %></time></p>
	<section aria-labelledby="article-content">
		<%- content %>
	</section>
</main>
<%- include('partials/bottom') %>