Gitlab@Informatics

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

search.ejs

Blame
  • search.ejs 305 B
    <h2>Search Results</h2>
    
    <ul>
      <% if (tours.length > 0) { %>
        <% tours.forEach(tour => { %>
          <li>
            <a href="/tour/<%= tour.id %>"><%= tour.name %></a> - <%= tour.price %> THB
          </li>
        <% }) %>
      <% } else { %>
        <p>No tours found</p>
      <% } %>
    </ul>
    
    <a href="/">Back to Home</a>