12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!DOCTYPE html>
- <html>
- <head>
- <%- head_tpl({site_title = site_title, title = title}) %>
- </head>
- <body>
- <%- header_tpl({site_title = site_title}) %>
- <main>
- <h1>
- <img
- class="title_icon" src="<%= icon_url %>"
- alt="<%= breadcrumbs[#breadcrumbs][2] -%>" />
- <%= title %>
- </h1>
- <section class="toolbox">
- <h4>Tools</h4>
- <p><a href="<%= rdf_href %>">Download RDF document</a></p>
- <p><a href="#">Download Laundry List [TODO]</a></p>
- </section>
- <section id="res_lineage">
- <h2>Classification</h2>
- <p>
- <% for i, bc in ipairs(breadcrumbs) do %>
- <% cls, label = table.unpack(bc) %>
- <% if i ~= 1 then %>
- <span class="breadcrumb_sep">➳</span>
- <% end %>
- <a
- class="breadcrumb<%if i == #breadcrumbs then %> current<% end %>"
- href="../class/<%= cls -%>">
- <%= label -%>
- </a>
- <% end %>
- </p>
- </section>
- <section id="res_dmd">
- <h2>Metadata</h2>
- <dl class="res_md">
- <% for _, ol in ipairs(dmd) do %>
- <dt>
- <% if ol.label then %><%= ol.label %>
- <% else %><code><%= ol.uri %></code><% end %>
- <% if ol.description then %><span
- title="<%= ol.description -%>"
- > 🛈</span>
- <% end %>
- </dt>
- <% for _, o in ipairs(ol) do %>
- <dd><%= o %></dd>
- <% end %>
- <% end %>
- </dl>
- </section>
- <% if next(rel) then %>
- <section id="res_rel">
- <h2>Relationships</h2>
- <dl class="res_md">
- <% for p, ol in pairs(rel) do %>
- <dt>
- <% if ol.label then %><%= ol.label %>
- <% else %><code><%= ol.uri %></code><% end %>
- </dt>
- <% for _, o in ipairs(ol) do %>
- <dd><a href="/res/<%= o.href %>"><%= o.label %></a></dd>
- <% end %>
- <% end %>
- </dl>
- </section>
- <% end %>
- <% if #children > 0 then %>
- <section id="res_children">
- <h2>Members</h2>
- <ul>
- <% for _, ll in ipairs(children) do %>
- <li><%= ll[1].label %> (<%= #ll %> items)<ol>
- <% for i, el in ipairs(ll) do %>
- <li><a href="<%= el.href %>">
- <% if el.tn then %>
- <img src="<%= el.tn %>" alt="<%= el.label %>" />
- <% else %>
- <%= el.label %>
- <% end %>
- </a></li>
- <%end %>
- </ol></li>
- <% end %>
- </ul>
- </section>
- <% end %>
- </main>
- <footer></footer>
- </body>
- </html>
|