1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html>
- <head>
- <%- header_tpl({site_title = site_title, title = "Index"}) %>
- </head>
- <body>
- <header>
- <h1><%= title %></h1>
- </header>
- <main>
- <section id="obj_list">
- <h2>Recent artifacts</h2>
- <ul>
- <% for _, obj in ipairs(obj_idx) do %>
- <li class="obj_link">
- <a href="<%= obj.href %>">
- <%if obj.tn then %>
- <img src="<%= obj.tn %>" alt="<%= obj.title.data %>" />
- <% end %>
- <%= obj.title.data %>
- <%if obj.title.lang then %>
- <span class="langtag"><%= obj.title.lang %></span>
- <% end %>
- </a>
- </li>
- <% end %>
- </ul>
- </section>
- </main>
- <footer></footer>
- </body>
- </html>
|