<!-- <%- include('partials/top') %>
<main class="body-margins">
	<i class="bi bi-book"></i>
	<h1><%= title %></h1>
	<p><%= description %></p>
	<p><%= author %> <%= published %></p>
	<%- content %>
</main>
<%- include('partials/bottom') %> -->

<%- include('partials/top') %>
<main class="body-margins">
	<i class="bi bi-book" aria-hidden="true"></i>
	<h1><%= title %></h1>
	<p class="description"><%= description %></p>
	<p class="author-info">
		<time datetime="<%= published %>"><%= published %></time>
		<span class="author-name"><%= author %></span>
	</p>
	<article class="post-content">
		<%- content %>
	</article>
</main>
<%- include('partials/bottom') %>
