<%- include('partials/top') %>
<main>
  <h1 class="container text-center">Blog Posts</h1>
  <ul class="row list-unstyled text-center justify-content-center">
    <% for (let i = 0; i < posts.length; i++) { %>
      <li class="col-auto bg-dark-subtle border border-dark rounded-3 m-1" style="width: 30%;" role="article" aria-labelledby="post-title-<%= i %>">
        <a class="btn btn-outline-primary shadow my-3" href="<%=posts[i].link%>" aria-label="Read more about <%= posts[i].title %>">
          <span id="post-title-<%= i %>"><%= posts[i].title %></span>
        </a>
        <p><%= posts[i].description %></p>
        <p><strong>By:</strong> <%= posts[i].author %></p>
        <p><strong>Published:</strong> <%= posts[i].published %></p>
      </li>
    <% } %>
  </ul>
</main>
<%- include('partials/bottom') %>