<%- include('partials/top') %>
<main class="blog-list-main">
  <div class="blog-list-header">
    <h1>Blog Posts</h1>
    <p class="blog-list-subtitle">Explore my thoughts, tutorials, and insights on web development and technology.</p>
  </div>
  
  <section class="blog-cards-container" aria-labelledby="blog-posts-section">
    <% for (let i = 0; i < posts.length; i++) { %>
      <article class="blog-card">
        <div class="blog-card-content">
          <h2 class="blog-card-title">
            <a href="<%=posts[i].link%>" aria-label="Read blog post titled: <%= posts[i].title %>">
              <%=posts[i].title%>
            </a>
          </h2>
          <p class="blog-card-description"><%=posts[i].description%></p>
          <div class="blog-card-meta">
            <span class="blog-meta-item">
              <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-person-fill" viewBox="0 0 16 16">
                <path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6"/>
              </svg>
              <%=posts[i].author%>
            </span>
            <span class="blog-meta-item">
              <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-calendar-event" viewBox="0 0 16 16">
                <path d="M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z"/>
                <path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z"/>
              </svg>
              <%=posts[i].published%>
            </span>
          </div>
          <a href="<%=posts[i].link%>" class="blog-read-more">
            Read More
            <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right" viewBox="0 0 16 16">
              <path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8"/>
            </svg>
          </a>
        </div>
      </article>
    <% } %>
  </section>
</main>
<%- include('partials/bottom') %>