beets/beetsplug/web/templates/index.html
2011-08-07 00:30:57 -07:00

43 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>beets</title>
<link rel="stylesheet"
href="{{ url_for('static', filename='beets.css') }}" type="text/css">
<script src="{{ url_for('static', filename='jquery.js') }}"></script>
<script src="{{ url_for('static', filename='underscore.js') }}">
</script>
<script src="{{ url_for('static', filename='backbone.js') }}"></script>
<script src="{{ url_for('static', filename='beets.js') }}"></script>
</head>
<body>
<div id="header">
<h1>beets</h1>
</div>
<div id="entities">
<form id="queryForm">
<input type="search" id="query" placeholder="Query">
</form>
<ul id="results">
</ul>
</div>
<div id="detail">
</div>
<!-- Templates. -->
<script type="text/template" id="item-entry-template">
<%= title %>
</script>
<script type="text/template" id="item-detail-template">
<span class="artist"><%= artist %></span>
<span class="album"><%= album %></span>
<span class="title"><%= title %></span>
<a class="download" href="/item/<%= id %>/file">download</a>
</script>
</body>
</html>