109 lines
No EOL
2.7 KiB
PHP
109 lines
No EOL
2.7 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<!-- Include EnlighterJS Styles -->
|
|
<link rel="stylesheet" type="text/css" href="EnlighterJS/Build/EnlighterJS.min.css" />
|
|
|
|
<!-- Include MooTools Framework -->
|
|
<script type="text/javascript" src="EnlighterJS/MooTools/MooTools-Core-1.5.2.js"></script>
|
|
|
|
<!-- Include EnlighterJS -->
|
|
<script type="text/javascript" src="EnlighterJS/Build/EnlighterJS.min.js" ></script>
|
|
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<link rel="stylesheet" href="index/styleTpe.css" />
|
|
<title>achilletoupin.com - TPE</title>
|
|
<link rel="shortcut icon" href="index/images/favicon.gif"/>
|
|
|
|
<script>
|
|
function show(id)
|
|
{
|
|
if(document.getElementById(id + 'd').style.display == 'none'){
|
|
document.getElementById(id + 'd').style.display = 'inline';
|
|
|
|
//document.getElementById(id).style.-ms-transform = 'rotate(0deg)';
|
|
//document.getElementById(id).style.-webkit-transform = 'rotate(0deg)';
|
|
document.getElementById(id).style.transform = 'rotate(0deg)';
|
|
|
|
|
|
}
|
|
else{
|
|
document.getElementById(id + 'd').style.display = 'none';
|
|
//document.getElementById(id).style.-ms-transform = 'rotate(-90deg)';
|
|
//document.getElementById(id).style.-webkit-transform = 'rotate(-90deg)';
|
|
|
|
document.getElementById(id).style.transform = 'rotate(-90deg)';
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<script>
|
|
function showF(id)
|
|
{
|
|
if(document.getElementById(id + 'd').style.display == 'none'){
|
|
document.getElementById(id + 'd').style.display = 'inline';
|
|
|
|
//document.getElementById(id).style.-ms-transform = 'rotate(0deg)';
|
|
//document.getElementById(id).style.-webkit-transform = 'rotate(0deg)';
|
|
document.getElementById(id).style.transform = 'rotate(0deg)';
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
<script>
|
|
function showButton(id)
|
|
{
|
|
if(document.getElementById(id + 'd').style.display == 'none'){
|
|
document.getElementById(id + 'd').style.display = 'inline';
|
|
|
|
document.getElementById(id).innerHTML = 'Masquer';
|
|
|
|
|
|
|
|
}
|
|
else{
|
|
document.getElementById(id + 'd').style.display = 'none';
|
|
|
|
document.getElementById(id).innerHTML = 'Afficher';
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<?php include("index/includes/header.php"); ?>
|
|
|
|
<section>
|
|
|
|
<article>
|
|
|
|
|
|
|
|
<h2>Sources</h2>
|
|
<?php include("index/includes/src.php"); ?>
|
|
|
|
<!-- Initialize EnlighterJS -->
|
|
<meta name="EnlighterJS" content="Advanced javascript based syntax highlighting" data-indent="4" data-selector-block="pre" data-selector-inline="code" data-language="c" />
|
|
|
|
</article>
|
|
|
|
<?php include("index/includes/aside.php"); ?>
|
|
|
|
</section>
|
|
|
|
|
|
<?php include("index/includes/footer.php"); ?>
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|