12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!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="Collection" />
- <%= title %>
- </h1>
- <div class="row">
- <section id="head_img" class="column column-66">
- <% if pref_rep then %>
- <a href="<%= pref_rep.url %>">
- <img src="<%= pref_rep.file %>" alt="[TODO]"/>
- </a>
- <% end %>
- </section>
- <section class="column column-30 toolbox">
- <h4>Tools</h4>
- <p><a href="<%= rdf_href %>">Download RDF document</a></p>
- <p><a href="#">Download Laundry List [TODO]</a></p>
- </section>
- </div>
- <% if #members > 0 then %>
- <section id="res_children">
- <h2>Members</h2>
- <ul>
- <% for _, el in ipairs(members) do %>
- <li>
- <a href="<%= el.href %>">
- <% if el.tn then %>
- <img src="<%= el.tn %>" alt="<%= el.label %>" />
- <% end %>
- <img class="text_icon" href="<%= el.icon %>" />
- <%= el.label %>
- </a>
- </li>
- <%end %>
- </ul>
- </section>
- <% end %>
- </main>
- <footer></footer>
- </body>
- </html>
|