res.html 620 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%= title %>&emsp;:&emsp;<%= data["dc:title"].data %></title>
  5. </head>
  6. <body>
  7. <header>
  8. <h1><%= title %>&emsp;❁&emsp;<%= data["dc:title"].data %></h1>
  9. </header>
  10. <main>
  11. <section id="res_md">
  12. <h2>Metadata</h2>
  13. <dl class="res_md">
  14. <% for p, o in pairs(dmd) do %>
  15. <dt><%= p %></dt>
  16. <dd><%= o.data %></dd>
  17. <% end %>
  18. </dl>
  19. </section>
  20. </main>
  21. <footer></footer>
  22. </body>
  23. </html>