mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
43 lines
1.3 KiB
HTML
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>
|