-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranscode.tmpl
More file actions
51 lines (51 loc) · 1.24 KB
/
Copy pathtranscode.tmpl
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
<templatizer lib="libtranscode.so">
<html>
<head>
<meta charset="UTF-8"/>
<title>DNS lookup</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" type="image/x-icon" href="favicon.png"/>
<include file="css.tmpls"/>
</head>
<body>
<include file="header.tmpls"/>
<section>
<form>
<label>
File:
<input name="dns-name" type="text" placeholder=""/>
</label>
<input class="button" type="submit" value="Enviar"/>
</form>
<h2>Media information</h2>
<table>
<tr>
<td>@</td>
<td>@</td>
</tr>
<tr>
<td>@</td>
<td>@</td>
</tr>
</table>
<h2>Supported formats</h2>
<table>
<swhile>
<tr>
<td>@</td>
<td>@</td>
<td>@</td>
</tr>
</swhile>
</table>
</section>
<include file="footer.tmpls"/>
<include file="scripts.tmpls"/>
<script src="js/sort-table.js"></script>
<script>
var defaultSortHeader = document.getElementById>
defaultSortHeader.asc = true; sort_table(defaultSortHeader);
</script>
</body>
</html>
</templatizer>