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.
 
 
 
 
 

20 lines
693 B

<% layout('./../layout.html') %>
<div class="container container--app">
<div class="grid">
<div class="col-12">
<h1><%= it.bucket.title %></h1>
<span>
<%= it.bucket.description %>
</span>
<button id="note-form-toggle" class="button absolute">
<svg class="icon p-left-3 size-large" aria-hidden="true">
<use xlink:href="/symbol-defs.svg#icon-circle-add"></use>
</svg>
</button>
<note-form bucket-id="<%= it.bucket._id %>"></note-form>
</div>
</div>
</div>
<script type="text/javascript" src="/js/bucket-single.js" defer></script>