mirror of
https://github.com/danbee/spotify-client
synced 2025-03-04 08:59:12 +00:00
26 lines
480 B
HTML
26 lines
480 B
HTML
<head>
|
|
<title>Spotify Client</title>
|
|
</head>
|
|
|
|
<body>
|
|
<form class="search">
|
|
<input name="q" type="search"><button type="submit">Search</button>
|
|
</form>
|
|
|
|
<ul class="songs">
|
|
{{#each songs}}
|
|
{{> song}}
|
|
{{else}}
|
|
<li>No results...</li>
|
|
{{/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>
|