123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html>
- <head>
- <title><%= title %> : <%= data["dc:title"].data %></title>
- </head>
- <body>
- <header>
- <h1><%= title %> ❁ <%= data["dc:title"].data %></h1>
- </header>
- <main>
- <section id="res_md">
- <h2>Metadata</h2>
- <dl class="res_md">
- <% for p, o in pairs(dmd) do %>
- <dt><%= p %></dt>
- <dd><%= o.data %></dd>
- <% end %>
- </dl>
- </section>
- </main>
- <footer></footer>
- </body>
- </html>
|