<!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>
</head>
<body>
  <h1>Welcome to our Tour Website</h1>
  <ul>
    <% tours.forEach(tour => { %>
      <li><a href="/tour/<%= tour.id %>"><%= tour.name %></a> - <%= tour.price %> THB</li>
    <% }) %>
  </ul>
</body>
</html>