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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
| <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>{TITLE}</title>
<style type='text/css'>
body {
color:{CFG_COLOR_TEXT};
font-family:Verdana,sans-serif;
font-size:12px;
background-color:{CFG_BACKCOLOR};
}
table {
color:{CFG_COLOR_TEXT};
font-family:Verdana,sans-serif;
font-size:12px;
background-color:{CFG_BGCOLOR};
}
a:link, a:visited, a:active { text-decoration: underline; color: {CFG_COLOR_LINK} }
a:hover { text-decoration: none; color: {CFG_COLOR_LINK} }
input {
border:1px solid black;
border-color={CFG_BORDERCOLOR};
background-color:{CFG_BGCOLOR};
font-family:Verdana,sans-serif;
font-size:11px;
color:{CFG_COLOR_TEXT};
}
select {
border:1px solid black;
border-color={CFG_BORDERCOLOR};
background-color:{CFG_BGCOLOR};
font-family:Verdana,sans-serif;
font-size:11px;
color:{CFG_COLOR_TEXT};
}
textarea {
border:1px solid black;
border-color={CFG_BORDERCOLOR};
background-color:{CFG_BGCOLOR};
font-family:Verdana,sans-serif;
font-size:11px;
color:{CFG_COLOR_TEXT};
}
ul#tabnav {
font: bold 11px verdana, arial, sans-serif;
list-style-type: none;
padding-bottom: 24px;
border-bottom: 1px solid {CFG_BORDERCOLOR};
margin: 50;
}
ul#tabnav li {
float: left;
height: 21px;
background-color: {CFG_BGCOLOR};
margin: 12px 2px 0 2px;
}
ul#tabnav li.active {
border-bottom: 1px solid {CFG_BORDERCOLOR};
background-color: {CFG_BGCOLOR};
border: 1px solid {CFG_BORDERCOLOR};
}
#tabnav a {
float: left;
display: block;
color: {CFG_COLOR_LINK};
text-decoration: none;
padding: 4px;
}
#tabnav a:hover {
border-bottom: 1px solid {CFG_BORDERCOLOR};
background-color: {CFG_BGCOLOR};
}
div.tab {
display: none;
}
div.tab:target {
display: block;
}
:target div.tab {
display: block;
}
:target div.tab + div.tab{
display: none;
}
.helpline { background-color: {CFG_BGCOLOR}; border-style: none; }
</style>
</head>
<body>
<div align="center">
<table border="1" style="width:{CFG_WIDTH}px; BORDER-COLLAPSE: collapse; border:1; border-color:{CFG_BORDERCOLOR};" cellpadding="5" cellspacing="0">
<tr>
<td>
<div style="text-align:center;">
<h1>{TITLE}</h1>
<ul id="tabnav">
<li class="active"><a href="#guestbook">{LANG_GUESTBOOK}</a></li>
<li><a href="#sign">{LANG_SIGN}</a></li>
<li><a href="{SITE_URL}" target="_blanck">{LANG_BACK_LINK}</a></li>
</ul>
</td>
</tr>
</table>
<br /> <br />
<div class="tab" id="guestbook">
<table border="1" style="width:{CFG_WIDTH}px; BORDER-COLLAPSE: collapse; border:1; border-color:{CFG_BORDERCOLOR};" cellpadding="5" cellspacing="0">
<tr>
<td>
<div style="text-align:center;">{STATS}<br /> <br />
{PAGINATION}</div><hr size="1" />
<!-- BEGIN liste_messages -->
{LANG_MSG_FROM} : {AUTHOR}, {LANG_POST_TIME} <span style="color:{CFG_COLOR_DATE}">{DATE}</span><br />
<span style="color:{CFG_COLOR_COMMENT}">{COMMENT}</span><br /> <br />
<hr size="1" />
<!-- END liste_messages -->
<div align="center">{PAGINATION}</div>
</td>
</tr>
</table>
</div>
<div class="tab" id="sign">
<table border="1" style="width:{CFG_WIDTH}px; BORDER-COLLAPSE: collapse; border:1; border-color:{CFG_BORDERCOLOR};" cellpadding="5" cellspacing="0">
<tr>
<td>
<div style="text-align:center;">
{LANG_SIGN}</div>
</td>
</tr>
</table>
</div>
</div>
</body>
</html> |