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
| <?php
include_once 'common.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="all" />
<link rel="shortcut icon" type="image/x-icon" href="http://www.domaine/favicon.ico" />
<title><?php echo LANG_PAGE_TITLE; ?></title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script language="JavaScript1.2">
function ejs_nodroit()
{
alert('Clic droit interdit');
return(false);
}
document.oncontextmenu = ejs_nodroit;
</script>
<div id="main">
<div id="header">
<img src="/images/header_background.jpg" alt="domaine" title="domaine" width="700" height="141" />
<div id="casemenu">
<ul id="menu">
<li><a href="http://www.domaine.com"> <?php echo LANG_MENU_HOME; ?> </a></li>
</ul>
</div>
</div>
<div id="page">
<div id="sidebar">
<img src="/images/lecteur.jpg" alt="" title="" />
</div>
<div id="content">
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html> |