1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/views/index.erb
2013-10-17 16:14:58 +01:00

26 lines
500 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>MPD Client</title>
</head>
<body>
<script type="text/x-handlebars" data-template-name="application">
<h1>MPD Client</h1>
{{ outlet }}
</script>
<script type="text/x-handlebars" data-template-name="queue">
<h2>Queue</h2>
<ul>
{{#each song in controller}}
<li>{{ song.artist }} - {{ song.title }}</li>
{{/each}}
</ul>
</script>
<%= javascript_tag 'mpd-client' %>
</body>
</html>