-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title data-i18n="title"></title>
<link rel="stylesheet" href="$views/css/buttons.css">
<link rel="stylesheet" href="css/style.css" type="text/css"/>
</head>
<body>
<div id="page">
<h2 class="subhead" data-i18n="title"></h2>
<section id="filterContainer">
<p data-i18n="filter_instructions"></p>
<div class="state-wrapper">
<input type="radio" id="state-true" name="state" value="true" /> <label for="state-true" data-i18n="filter"></label>
<input type="radio" id="state-false" name="state" value="false" /> <label for="state-false" data-i18n="do_not_filter"></label>
<br/><strong><span data-i18n="only_desktop"></span></strong>
</section>
<h2 class="subhead" data-i18n="create_filtered"></h2>
<section id="playlistContainer">
<div id="syncedPlaylistsContainer">
<div class="syncedPlaylists"></div>
<div class="dropzone instructions" data-i18n="drag_zone"></div>
</div>
<div id="morehelp">
<h3 data-i18n="more_help"></h3>
<div data-i18n="extended_help"></div>
</div>
<div id="dirtylist">
<h3 data-i18n="dirty_list"></h3>
<div data-i18n="dirty_list_help"></div>
</div>
</section>
</div>
<script src="scripts/main.js"></script>
</body>
</html>