-
Notifications
You must be signed in to change notification settings - Fork 0
/
converter.tpl
68 lines (68 loc) · 1.43 KB
/
converter.tpl
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
60
61
62
63
64
65
66
67
68
<html>
<head>
<title>Convert Tracker by flaviojs</title>
<style type="text/css">
body,html
{
margin: 0; padding: 0;
background-color: #ffffff;
}
div#mainbody
{
margin: 140px auto;
width: 436px;
background: url('BodyGradient.png') repeat-x #ffffff;
border: 2px solid #04356C;
position: relative;
padding: 20px 5px 5px 5px;
font: 16px Arial, sans-serif;
color: #000000;
}
img#logo
{
position: absolute;
top: -82px;
left: -2px;
}
div#footer
{
text-align: center;
border-top: 1px solid #666666;
margin-top: 10px;
padding: 2px;
font: 10px Arial, sans-serif;
color: #666666;
}
div.indented
{
padding-left: 20px;
padding-bottom: 10px;
font-size: 14px;
}
div.negative
{
color: #990000;
padding-left: 20px;
font-weight: bold;
background: url('no.png') no-repeat;
}
div.positive
{
color: #009900;
padding-left: 20px;
font-weight: bold;
background: url('yes.png') no-repeat;
}
table th { text-align: left; }
</style>
</head>
<body>
<div id="mainbody">
<img id="logo" src="TopBarLogo.png" />
[[%CONTENT%]]
<div id="footer">
IP.Board and the IPB Logo are property of <a href="http://www.invisionpower.com" target="_blank">Invision Power Services</a>.<br />
Based on the <a href="http://www.mediawiki.org/wiki/Extension:IPBAuth" target="_blank">IPBAuth</a> installer.
</div>
</body>
</html>