notebooksHtml = htl.html`<div>
<style>
.notebooksList {
font-size: .8rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(25%, 1fr))
}
.notebookItem {
display: flex;
width: 95%;
height: 50%;
margin: 0px 5px 10px 0px;
}
.notebookItem > * {
padding: 0px 5px 5px 0px;
}
.notebookName {
font-weight: bold;
max-height: 5em;
overflow: scroll;
}
.notebookItem > a {
width: 30%;
}
.notebookItem img {
width: 100%;
border-radius: 15%;
box-shadow: 2px 2px 5px 0px #eee;
}
</style>
<div>Showing ${filteredNotebooks2.length} out of ${notebooks.length} notebooks</div>
<div class="notebooksList">
${filteredNotebooks2
.map(
(n) =>
htl.html`<div class="notebookItem">
<a href=${n["Link-href"]}><img src=${n["Thumb-src"]}></img></a>
<div>
<div class="notebookName"><a href=${n["Link-href"]}>${
n.Name
}</a></div>
<div>${observableHeart()} ${n.Likes}</div>
<div>${fmt(n.parsedTimestamp)}</div>
</div>
</div>`
)}
</div>
</div>`