You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
693 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <% layout('./../layout.html') %>
  2. <div class="container container--app">
  3. <div class="grid">
  4. <div class="col-12">
  5. <h1><%= it.bucket.title %></h1>
  6. <span>
  7. <%= it.bucket.description %>
  8. </span>
  9. <button id="note-form-toggle" class="button absolute">
  10. <svg class="icon p-left-3 size-large" aria-hidden="true">
  11. <use xlink:href="/symbol-defs.svg#icon-circle-add"></use>
  12. </svg>
  13. </button>
  14. <note-form bucket-id="<%= it.bucket._id %>"></note-form>
  15. </div>
  16. </div>
  17. </div>
  18. <script type="text/javascript" src="/js/bucket-single.js" defer></script>