A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 71250e3e9ffd1e14fcc2db839b625bb50cffcd6c 20 lines 660 B view raw
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>