<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Tour Website</title>
  <link rel="stylesheet" href="/css/style.css">
</head>
<body>
    <header>
        <h1>Welcome to Our Tour Website</h1>
        <nav>
          <a href="/">Home</a>
          <a href="/about">About</a>
          <a href="/contact">Contact</a>
          <a href="/login">Login</a>
        </nav>
      </header>
  
  <section>
    <h2>Available Tours</h2>
    <ul>
      <% tours.forEach(tour => { %>
        <li>
          <a href="/tour/<%= tour.id %>"><%= tour.name %></a> - <%= tour.price %> THB
        </li>
      <% }) %>
    </ul>
  </section>

  <footer>
    <p>&copy; 2025 Tour Website</p>
  </footer>
</body>
</html>