<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8" />
  <title>{blog_title}</title>
  <link rel="stylesheet" href="./style.css" />
</head>
<body>
  <header>
    <h1><a href="{blog_url}">{blog_title}</a></h1>
    <nav>
      <ul>
        <li><a href="/">홈</a></li>
        <li><a href="/category">카테고리</a></li>
      </ul>
    </nav>
  </header>

  <main>
    <section class="post-list">
      <!-- 게시글 반복 출력 -->
      <!-- START_ENTRY -->
      <article class="post-item">
        <h2><a href="{url}">{title}</a></h2>
        <p class="excerpt">{excerpt}</p>
        <p class="date">{date}</p>
      </article>
      <!-- END_ENTRY -->
    </section>
  </main>

  <footer>
    <p>© {blog_title} - Powered by Tistory</p>
  </footer>
</body>
</html>
