mirror of
https://github.com/danbee/spotify-client
synced 2025-03-04 08:59:12 +00:00
24 lines
401 B
HTML
24 lines
401 B
HTML
<head>
|
|
<title>Spotify Client</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form class="search">
|
|
<input name="q" type="search">
|
|
</form>
|
|
|
|
<ul class="songs">
|
|
{{#each songs}}
|
|
{{> song}}
|
|
{{/each}}
|
|
</ul>
|
|
</body>
|
|
|
|
<template name="song">
|
|
<li>
|
|
<img class="cover" src="{{image}}">
|
|
<div class="track"><b>{{artist}}</b>: {{title}}</div>
|
|
<div class="album">{{album}}</div>
|
|
</li>
|
|
</template>
|