Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • cad9d4cf04df08e0b14dc524706c0ba5dda2918a
  • main default protected
2 results

tour-details.ejs

Blame
  • tour-details.ejs 521 B
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title><%= tour.name %> - Tour Details</title>
      <link rel="stylesheet" href="/css/style.css">
    </head>
    <body>
      <header>
        <h1>Tour Details: <%= tour.name %></h1>
      </header>
      
      <section>
        <h2>Description</h2>
        <p><%= tour.description %></p>
        <p>Price: <%= tour.price %> THB</p>
      </section>
    
      <footer>
        <p>&copy; 2025 Tour Website</p>
      </footer>
    </body>
    </html>