index.stpl 697 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="<%= lang %>">
  3. <head>
  4. <title>Measures of Puerto Rico</title>
  5. <meta charset="UTF-8">
  6. <meta name="description" content="Listing and details of the Legal Measures being brought forth by the Puerto Rico house of representatives.">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. </head>
  9. <body>
  10. <h1>Measures</h1>
  11. <% for measure in measures { %>
  12. <div class="grid-container">
  13. <div class="grid-item"><a href="/measures/<%=measure.name%>.<%= lang %>.html"><%= measure.name %></a></div>
  14. <div class="grid-item"><%= measure.heading %></div>
  15. </div>
  16. <hr/>
  17. <% } %>
  18. </body>
  19. </html>