| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <%- include('head') %>
- <link rel="stylesheet" href="/stylesheets/album.css">
- </head>
- <body>
- <%- include('header') %>
- <div class="album-header">
- <h1 style="color: purple"><%= data.title %></h1>
- <img style="border-radius: 8px;" src="<%= data.cover %>" alt="<%= data.title %>">
- <div style="color: gray; font-size: 18px; padding: 10px"><%= data.slogon %></div>
- </div>
- <div class="content">
- <div class="image-grid">
- <% data.contents.forEach(item => { %>
- <a href="/<%= lang %>/detail/<%= item._id %>"><img src="<%= item.thumb %>" alt="<%= item.name %>" ></a>
- <% }); %>
- </div>
- </div>
- <div style="padding: 40px"></div>
- </body>
- </html>
|