forked from
tokono.ma/diffuse
A music player that connects to your cloud/distributed storage.
1<ul>
2 {{ for index, item of items }}
3 <li data-uri="{{ item.url |> facetURI }}" data-name="{{item.title}}" style="margin-top: var(--space-md)">
4 <div style="display: flex; gap: var(--space-xs); justify-content: space-between;">
5 <a href="{{ item.url |> facetLoaderURL }}">
6 {{item.title}}
7 </a>
8 <button class="button--tiny button--bg-accent" rel="edit">
9 <span class="with-icon">
10 <i class="ph-fill ph-code-block"></i>
11 Edit
12 </span>
13 </button>
14 </div>
15 <div class="list-description">
16 {{ item.desc |> md(true) }}
17 </div>
18 </li>
19 {{ /for }}
20</ul>