index.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <%- head_tpl({site_title = site_title, title = "Index"}) %>
  5. <!-- JS client-side search. -->
  6. <script src="/js/fuse.min.js"></script>
  7. <script src="/js/fuse_init.js"></script>
  8. <script>window.webroot = "<%= webroot -%>";</script>
  9. <script src="/js/search.js" defer></script>
  10. </head>
  11. <body>
  12. <%- header_tpl({site_title = site_title}) %>
  13. <main>
  14. <h1 class="title"><%= title %></h1>
  15. <section id="search">
  16. <h2>Search</h2>
  17. <form action="/" method="GET">
  18. <fieldset>
  19. <label class="v_hidden" for="q">Search query</label>
  20. <div class="float-left">
  21. <input
  22. type="text" class="float-left"
  23. placeholder="Search by title, type, etc."
  24. name="q" id="qry_f">
  25. </div>
  26. <input class="button-primary" type="submit" value="Search">
  27. </fieldset>
  28. </form>
  29. </section>
  30. <section id="search_results" class="hidden">
  31. <h2>Search results</h2>
  32. <ul id="result_list"></ul>
  33. </section>
  34. <section id="coll_list">
  35. <h2>Recent collections</h2>
  36. <ul class="slideshow">
  37. <% for _, coll in ipairs(idx_data.collections) do %>
  38. <li class="coll_link">
  39. <a href="<%= coll.href %>">
  40. <%if coll.tn then %>
  41. <img src="<%= coll.tn %>" alt="<%= coll.title.data %>" />
  42. <br/>
  43. <% end %>
  44. <%= coll.title.data %>
  45. <%if coll.title.lang then %>
  46. <span class="langtag"><%= coll.title.lang %></span>
  47. <% end %>
  48. </a>
  49. </li>
  50. <% end %>
  51. </ul>
  52. </section>
  53. <section id="obj_list">
  54. <h2>Recent artifacts</h2>
  55. <ul class="slideshow">
  56. <% for _, obj in ipairs(idx_data.objects) do %>
  57. <li class="obj_link">
  58. <a href="<%= obj.href %>">
  59. <%if obj.tn then %>
  60. <img src="<%= obj.tn %>" alt="<%= obj.title.data %>" />
  61. <br/>
  62. <% end %>
  63. <%= obj.title.data %>
  64. <%if obj.title.lang then %>
  65. <span class="langtag"><%= obj.title.lang %></span>
  66. <% end %>
  67. </a>
  68. </li>
  69. <% end %>
  70. </ul>
  71. </section>
  72. </main>
  73. <footer></footer>
  74. </body>
  75. </html>