<%- include('partials/top') %>
<main class="bg-light p-4 row">
  <h1 class="pb-1">Blog Posts</h1>
  <ul aria-labelledby="blogPostsList">
    <% for (let i = 0; i < posts.length; i++) { %>
      <li>
        <article>
          <h5>
            <a href="<%=posts[i].link%>" 
                style="text-decoration: none; font-weight: bold; font-style: italic;" 
                class="text-dark" 
                aria-label="Read the blog post titled: <%= posts[i].title %>">
                <%= posts[i].title %>
            </a>
          </h5>
          <p><strong>Description:</strong> <%= posts[i].description %></p>
          <p><strong>Author:</strong> <%= posts[i].author %></p>
          <p><strong>Published on:</strong> <%= posts[i].published %></p>
        </article>
      </li>
    <% } %>
  </ul>
</main>
<%- include('partials/bottom') %>
