-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
59 lines (59 loc) · 2.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Torrent Player</title>
<script src="https://unpkg.com/vue"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- <link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/palette.css"> -->
</head>
<body>
<!-- header toolbar -->
<!-- <header id="header" class="header dark-primary-color"> -->
<!-- <nav class="inner" style="vertical-align: middle"> -->
<!-- <a style="display: inline-block; font-size: x-large; float: left">Torrent Player</a> -->
<!-- <a style="display: inline-block; vertical-align: middle;"> -->
<!-- <input id="magnet-input" -->
<!-- v-model="magnet" -->
<!-- v-on:keyup.enter="addMagnet" -->
<!-- placeholder="Insert a magnet link, hash or path to .torrent" -->
<!-- style="vertical-align: middle" -->
<!-- > -->
<!-- </a> -->
<!-- <input type="file" name="file" id="file" class="inputfile utility-button" /> -->
<!-- <label for="file" class="utility-button"> -->
<!-- <i class="material-icons">folder_open</i> -->
<!-- </label> -->
<!-- <a class="utility-button"> -->
<!-- <i class="material-icons">file_download</i> -->
<!-- </a> -->
<!-- <a class="utility-button"> -->
<!-- <i class="material-icons">settings</i> -->
<!-- </a> -->
<!-- <a class="utility-button"> -->
<!-- <i class="material-icons">search</i> -->
<!-- </a> -->
<!-- </nav> -->
<!-- </header> -->
<!-- <\!-- <div id="dd" style="text-align: center; margin-top:15%"> -->
<!-- <i v-if="seen" class="material-icons" style="font-size: big"></i> -->
<!-- </div> -\-> -->
<!-- <div id="example-1" class="content"> -->
<!-- <div -->
<!-- is="Song" -->
<!-- v-for="(song, key) in songs" -->
<!-- v-bind:title="song.title" -->
<!-- v-bind:torrent="song.torrent" -->
<!-- v-bind:index="song.index" -->
<!-- v-bind:duration="song.duration"> -->
<!-- </div> -->
<!-- </div> -->
<!-- <footer class="footer"> -->
<!-- <paper-audio-player id="audio" color="#2196F3" auto-play="true">No se puede cargar el reproductor</paper-audio-player> -->
<!-- </footer> -->
<!-- <script src="./songs-list.js"></script> -->
<!-- <\!-- <script src="./drag-drop.js"></script> -\-> -->
<!-- </body> -->
<div id="app"></div>
</html>