<%- include('partials/top') %>
<style>
a{
  text-decoration: none;
  font-weight: bold;
  font-style: italic;
  color: rgb(0, 0, 0);
}
nav a {
  font-style: normal;
}
</style>
<main class="bg-light p-4 row">
  <h1><%= title %></h1>
  <section aria-labelledby="blog-metadata">
    <p id="blog-metadata">
      <strong>Author:</strong> <%= author %>
      <br>
      <strong>Published on:</strong> <%= published %>
    </p>
  </section>
  
  <p><%= description %></p>

  <section aria-labelledby="blog-content">
    <div id="blog-content">
      <%- content %>
    </div>
  </section>
</main>
<%- include('partials/bottom') %>
