1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!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 %>
- <img src="<%= pref_rep.file %>" alt="<%= title %>"/>
- <% 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_mwmbers">
- <h2>Members</h2>
- <ul class="slideshow">
- <% for _, el in ipairs(members) do %>
- <li>
- <a href="<%= el.href %>">
- <% if el.tn then %>
- <img src="<%= el.tn %>" alt="<%= el.label %>" />
- <% end %>
- <br/>
- <img
- class="body_icon" src="<%= el.icon %>"
- alt="<%= el.ctype_label %>"/>
- <%= el.label %>
- </a>
- </li>
- <%end %>
- </ul>
- </section>
- <% end %>
- </main>
- <footer></footer>
- </body>
- </html>
|