deleted useless files
[mp3tohtml.git] / mp3tohtml / header.tpl
1 <html>
2         <head>
3                 <title>All songs</title>
4
5                 <link rel="stylesheet"
6                       type="text/css"
7                       href="https://cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css"/>
8
9                 <script type="text/javascript"
10                         language="javascript"
11                         src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js">
12                 </script>
13
14                 <script type="text/javascript"
15                         language="javascript"
16                         src="https://cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js">
17                 </script>
18
19                 <link rel="stylesheet"
20                       type="text/css"
21                       href="style.css"/>
22
23                 <script>$(document).ready(function() { $('#songs').DataTable(); } );</script>
24         </head>
25
26         <body>
27                 <nav>
28                         <ul>
29                                 <li><a href="index.html">Proxy Radio</a></li>
30                                 <li><a href="last_songs.html">Played songs</a></li>
31                                 <li class="selected">All songs</li>
32                         </ul>
33                 </nav>
34
35                 <section>
36                         <table id="songs" class="display compact" width="100%">
37                                 <thead>
38                                         <tr>
39                                                 <th>Artist</th>
40                                                 <th>Album</th>
41                                                 <th>Title</th>
42                                                 <th>Soure</th>
43                                                 <th>Curator</th>
44                                                 <th>Copyright</th>
45                                                 <th>Comments</th>
46                                         </tr></thead>