recommandations dareboost
Cette révision appartient à :
Parent
d673347dc0
révision
b37f27fdff
5 fichiers modifiés avec 265 ajouts et 236 suppressions
16
.htaccess
16
.htaccess
|
@ -11,3 +11,19 @@ RewriteRule ^news-([0-9]+)-(.+)\.html$ lireNews.php?idnews=$1&titre=$2 [L]
|
|||
RewriteCond %{THE_REQUEST} /ficheprojet\.php\?idProjet=([0-9]+)&titre=([^\s]+) [NC]
|
||||
RewriteRule . projet-%1-%2.html? [R=301,L]
|
||||
RewriteRule ^projet-([0-9]+)-(.+)\.html$ ficheprojet.php?idProjet=$1&titre=$2 [L]
|
||||
|
||||
<IfModule mod_expires.c>
|
||||
ExpiresActive On
|
||||
ExpiresDefault "access plus 1 month"
|
||||
ExpiresByType image/x-icon "access plus 1 year"
|
||||
ExpiresByType image/gif "access plus 1 year"
|
||||
ExpiresByType image/jpeg "access plus 1 year"
|
||||
ExpiresByType image/png "access plus 1 month"
|
||||
ExpiresByType text/css "access plus 1 month"
|
||||
ExpiresByType application/javascript "access plus 1 month"
|
||||
</IfModule>
|
||||
<IfModule mod_headers.c>
|
||||
Header always set X-FRAME-OPTIONS "SAMEORIGIN"
|
||||
Header always set X-XSS-Protection "1; mode=block"
|
||||
Header always set X-Content-Type-Options "nosniff"
|
||||
</IfModule>
|
||||
|
|
Fichier binaire non affiché.
Avant Largeur: | Hauteur: | Taille: 181 Kio Après Largeur: | Hauteur: | Taille: 49 Kio |
Fichier binaire non affiché.
Avant Largeur: | Hauteur: | Taille: 184 Kio Après Largeur: | Hauteur: | Taille: 52 Kio |
|
@ -17,7 +17,6 @@ Free to use and fork and anything you want !
|
|||
|############################################################|
|
||||
|###########_____SITE V3 - POLE DEVELOPPEMENT_____###########|
|
||||
|
||||
|
||||
**/
|
||||
$(document).ready( function () {
|
||||
|
||||
|
@ -226,7 +225,7 @@ $("#triggercontact").click(function(){
|
|||
var parent=$(this).parents(".contactbox").attr("id");
|
||||
sendcontact(parent);
|
||||
});
|
||||
$("#contactpopup span").click(function(){
|
||||
$("#contactpopup").find("span").click(function(){
|
||||
$("#contactpopup").remove();
|
||||
});
|
||||
});
|
||||
|
@ -281,7 +280,7 @@ function sendcontact(parent){
|
|||
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
|
||||
|
||||
//fermeture du popup
|
||||
$("#formsubcont span").click(function(){
|
||||
$("#formsubcont").find("span").click(function(){
|
||||
$("#formsubcont").remove();
|
||||
$("#contactpopup").remove();
|
||||
});
|
||||
|
@ -346,7 +345,7 @@ function errorbox(){
|
|||
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
|
||||
|
||||
//fermeture du popup
|
||||
$("#formsubcont span").click(function(){
|
||||
$("#formsubcont").find("span").click(function(){
|
||||
$("#formsubcont").remove();
|
||||
});
|
||||
|
||||
|
@ -404,8 +403,8 @@ function getcommnews(news) {
|
|||
// prévisualiser un commentaire
|
||||
$("#preview_commentaire_button").click(function(){
|
||||
$("#commpreview, #commpreviewp").remove();
|
||||
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
|
||||
var commentaire=nl2br($("#depot_commentaire_depotbox textarea[name='commentaire']").val());
|
||||
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
|
||||
var commentaire=nl2br($("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val());
|
||||
if(pseudo.trim()==="" || commentaire.trim()===""){
|
||||
alert("Il n'y a rien à prévisualiser banane, il faut remplir tous les champs.");
|
||||
return;
|
||||
|
@ -418,9 +417,9 @@ function getcommnews(news) {
|
|||
$("#depot_commentaire_button").click(function(){
|
||||
// on envoi un nouveau commentaire
|
||||
var idnews=$(this).attr("data-commnewsid");
|
||||
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
|
||||
var commentaire=$("#depot_commentaire_depotbox textarea[name='commentaire']").val();
|
||||
var dumbot=$("#depot_commentaire_depotbox input[name='dumbot']").val();
|
||||
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
|
||||
var commentaire=$("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val();
|
||||
var dumbot=$("#depot_commentaire_depotbox").find("input[name='dumbot']").val();
|
||||
postcommnews(idnews,pseudo,commentaire,dumbot);
|
||||
|
||||
});
|
||||
|
@ -463,7 +462,7 @@ function postcommnews(news,pseudo,commentaire,dumbot){
|
|||
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
|
||||
|
||||
//fermeture du popup
|
||||
$("#formsubcont span").click(function(){
|
||||
$("#formsubcont").find("span").click(function(){
|
||||
$("#formsubcont").remove();
|
||||
$("#commentaire_box").remove();
|
||||
});
|
||||
|
@ -508,8 +507,8 @@ function getcommprojet(projet) {
|
|||
// prévisualiser un commentaire
|
||||
$("#preview_commentaire_button").click(function(){
|
||||
$("#commpreview, #commpreviewp").remove();
|
||||
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
|
||||
var commentaire=$("#depot_commentaire_depotbox textarea[name='commentaire']").val();
|
||||
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
|
||||
var commentaire=$("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val();
|
||||
if(pseudo.trim()==="" || commentaire.trim()===""){
|
||||
alert("Il n'y a rien a prévisualiser banane.");
|
||||
return;
|
||||
|
@ -522,9 +521,9 @@ function getcommprojet(projet) {
|
|||
$("#depot_commentaire_button").click(function(){
|
||||
// on envoi un nouveau commentaire
|
||||
var idprojet=$(this).attr("data-commprojetid");
|
||||
var pseudo=$("#depot_commentaire_depotbox input[name='pseudo']").val();
|
||||
var commentaire=$("#depot_commentaire_depotbox textarea[name='commentaire']").val();
|
||||
var dumbot=$("#depot_commentaire_depotbox input[name='dumbot']").val();
|
||||
var pseudo=$("#depot_commentaire_depotbox").find("input[name='pseudo']").val();
|
||||
var commentaire=$("#depot_commentaire_depotbox").find("textarea[name='commentaire']").val();
|
||||
var dumbot=$("#depot_commentaire_depotbox").find("input[name='dumbot']").val();
|
||||
postcommprojet(idprojet,pseudo,commentaire,dumbot);
|
||||
|
||||
});
|
||||
|
@ -568,7 +567,7 @@ function postcommprojet(projet,pseudo,commentaire,dumbot){
|
|||
$("#formsubcont").css({"top":hauteur/2-50,"left":largeur/2-50});
|
||||
|
||||
//fermeture du popup
|
||||
$("#formsubcont span").click(function(){
|
||||
$("#formsubcont").find("span").click(function(){
|
||||
$("#formsubcont").remove();
|
||||
$("#commentaire_box").remove();
|
||||
});
|
||||
|
@ -604,10 +603,10 @@ function notebloc(){
|
|||
dimensions();
|
||||
getsize("#notebox");
|
||||
$("#notebox").css({"top":100,"left":largeur/2-itemOW/2});
|
||||
$("#notebox span").click(function(){
|
||||
$("#notebox").find("span").click(function(){
|
||||
$("#notebox").remove();
|
||||
});
|
||||
$("#advice div").click(function(){
|
||||
$("#advice").find("div").click(function(){
|
||||
$("#advice").height("auto");
|
||||
});
|
||||
$(".blocknotation").click(function(){
|
||||
|
@ -620,7 +619,7 @@ function notebloc(){
|
|||
// on envoi la note
|
||||
$("#sendnote").click(function(){
|
||||
var idprojet=$("#projetcommentaire").attr("data-idprojet");
|
||||
var note=$(".blocknotation div[data-select=select]").attr("data-note");
|
||||
var note=$(".blocknotation").find("div[data-select=select]").attr("data-note");
|
||||
if(localStorage["note"+idprojet]){
|
||||
alert("Merci à vous d'apprécier autant notre travail mais vous avez déjà noté ce projet.");
|
||||
}
|
||||
|
@ -647,7 +646,7 @@ function notebloc(){
|
|||
$("#formsubcont").css({"left":$("#notebox").width()/2-90});
|
||||
|
||||
//fermeture du popup
|
||||
$("#formsubcont span").click(function(){
|
||||
$("#formsubcont").find("span").click(function(){
|
||||
$("#formsubcont").remove();
|
||||
$("#notebox").remove();
|
||||
|
||||
|
@ -691,7 +690,7 @@ function hhhchatcontrol(){
|
|||
|
||||
|
||||
// boutons de controle réduire/agrandir
|
||||
$("#chatheader span:eq(1)").click(function(){
|
||||
$("#chatheader").find("span:eq(1)").click(function(){
|
||||
|
||||
if($(this).hasClass("reploy")){
|
||||
$(this).removeAttr("class");
|
||||
|
@ -703,7 +702,7 @@ function hhhchatcontrol(){
|
|||
}
|
||||
});
|
||||
// boutons de controle fermer
|
||||
$("#chatheader span:eq(0)").click(function(){
|
||||
$("#chatheader").find("span:eq(0)").click(function(){
|
||||
$("#hhhtchat").remove();
|
||||
});
|
||||
|
||||
|
@ -715,7 +714,7 @@ function chatposition(){
|
|||
var h= (hauteur/3)*2;
|
||||
$("#hhhtchat").attr("data-chatdeploy","true");
|
||||
$("#hhhtchat").css({"width":w,"height":h+50,"left":largeur/2-w/2, "top":hauteur/2-(h+50)/2});
|
||||
$("#hhhtchat iframe").css({"width":w,"height":h-50});
|
||||
$("#hhhtchat").find("iframe").css({"width":w,"height":h-50});
|
||||
}
|
||||
|
||||
function chatopen(){
|
||||
|
@ -1072,104 +1071,109 @@ $(document).mousedown(function(e){
|
|||
var lien = $(this).attr("href");
|
||||
// on trie les liens au cas par cas
|
||||
|
||||
//liens pour des pages internes sans autres GET
|
||||
if($(this).is($("a[data-link=internal]"))){
|
||||
titrepage=$('nav a[href="'+lien+'"]').text()
|
||||
request="?request=ajax";
|
||||
}
|
||||
// liens de projet
|
||||
else if($(this).is($("a[data-link=projet]"))){
|
||||
titrepage=lienprojet;
|
||||
request="&request=ajax";
|
||||
// alert();
|
||||
// console.log(titrepage);
|
||||
}
|
||||
// liens d'un projet depuis une news
|
||||
else if($(this).is($("a[data-link=liennewsprojet]"))){
|
||||
titrepage=$(this).text();
|
||||
request="&request=ajax";
|
||||
}
|
||||
// liens de liste projet
|
||||
else if($(this).is($("a[data-link=listeprojet]"))){
|
||||
titrepage=$(".listrlz_titre",this).text();
|
||||
request="&request=ajax";
|
||||
if(lien=="https://lel.hhh-world.com"){
|
||||
window.open(lien);
|
||||
}else{
|
||||
|
||||
//liens pour des pages internes sans autres GET
|
||||
if($(this).is($("a[data-link=internal]"))){
|
||||
titrepage=$('nav a[href="'+lien+'"]').text()
|
||||
request="?request=ajax";
|
||||
}
|
||||
// liens de projet
|
||||
else if($(this).is($("a[data-link=projet]"))){
|
||||
titrepage=lienprojet;
|
||||
request="&request=ajax";
|
||||
// alert();
|
||||
// console.log(titrepage);
|
||||
}
|
||||
// liens d'un projet depuis une news
|
||||
else if($(this).is($("a[data-link=liennewsprojet]"))){
|
||||
titrepage=$(this).text();
|
||||
request="&request=ajax";
|
||||
}
|
||||
// liens de liste projet
|
||||
else if($(this).is($("a[data-link=listeprojet]"))){
|
||||
titrepage=$(".listrlz_titre",this).text();
|
||||
request="&request=ajax";
|
||||
|
||||
|
||||
}
|
||||
// news seule depuis l'index
|
||||
else if($(this).is($("a[data-link=news]"))){
|
||||
|
||||
titrepage=$(this).parents("article").children("h3").text();
|
||||
request="&request=ajax";
|
||||
}
|
||||
// news seule depuis les archives
|
||||
else if($(this).is($("a[data-link=archnews]"))){
|
||||
titrepage=$(".listnews_titre",this).text();
|
||||
request="&request=ajax";
|
||||
}
|
||||
|
||||
// membre
|
||||
else if($(this).is($("a[data-link=seemembre]"))){
|
||||
titrepage="Les membres";
|
||||
request="&request=ajax";
|
||||
flag=$(this).attr("href");
|
||||
// flag="askmembre";
|
||||
}
|
||||
|
||||
// liens du menu
|
||||
else {
|
||||
titrepage = $(this).text();
|
||||
request="?request=ajax";
|
||||
}
|
||||
loader("init");
|
||||
$.ajax({
|
||||
url: lien + request,
|
||||
success: function(data){
|
||||
loader("destroy");
|
||||
$("#content").animate({scrollTop:0});
|
||||
reploymenu();
|
||||
$("h2").text(titrepage);
|
||||
$("#dynabox").html(data);
|
||||
|
||||
// lancement des différents modules
|
||||
affichage();
|
||||
seecommnews();
|
||||
seecommprojet();
|
||||
visionneuse();
|
||||
boitafiltre();
|
||||
projet();
|
||||
thanx();
|
||||
contact();
|
||||
givenote();
|
||||
seemembres();
|
||||
chatopen();
|
||||
errorbox();
|
||||
deploynews();
|
||||
|
||||
// quand on a fait un lien depuis un membre
|
||||
|
||||
if (typeof (flag) != 'undefined'){
|
||||
flag=flag.substr(23);
|
||||
// les-membres.php?member=Lukia
|
||||
$.ajax({
|
||||
url: "classmembres.php?pseudo="+flag+"",
|
||||
success: function(data){
|
||||
$("#rightmembres").html(data);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// on pousse la page vue dans le tableau Google Analytics
|
||||
_gaq.push(['_trackPageview','/'+lien]);
|
||||
// controle IE ( IE <=9 incompatible avec history.pushState)
|
||||
if($.browser['msie']===false || $.browser['msie']===true && version>=10.0){
|
||||
history.pushState('','Hardcore Hentai Heaquarter V3 - '+titrepage, lien);
|
||||
}
|
||||
document.title = 'Hardcore Hentai Heaquarter V3 - '+titrepage;
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
// news seule depuis l'index
|
||||
else if($(this).is($("a[data-link=news]"))){
|
||||
|
||||
titrepage=$(this).parents("article").children("h3").text();
|
||||
request="&request=ajax";
|
||||
}
|
||||
// news seule depuis les archives
|
||||
else if($(this).is($("a[data-link=archnews]"))){
|
||||
titrepage=$(".listnews_titre",this).text();
|
||||
request="&request=ajax";
|
||||
}
|
||||
|
||||
// membre
|
||||
else if($(this).is($("a[data-link=seemembre]"))){
|
||||
titrepage="Les membres";
|
||||
request="&request=ajax";
|
||||
flag=$(this).attr("href");
|
||||
// flag="askmembre";
|
||||
}
|
||||
|
||||
// liens du menu
|
||||
else {
|
||||
titrepage = $(this).text();
|
||||
request="?request=ajax";
|
||||
}
|
||||
loader("init");
|
||||
$.ajax({
|
||||
url: lien + request,
|
||||
success: function(data){
|
||||
loader("destroy");
|
||||
$("#content").animate({scrollTop:0});
|
||||
reploymenu();
|
||||
$("h2").text(titrepage);
|
||||
$("#dynabox").html(data);
|
||||
|
||||
// lancement des différents modules
|
||||
affichage();
|
||||
seecommnews();
|
||||
seecommprojet();
|
||||
visionneuse();
|
||||
boitafiltre();
|
||||
projet();
|
||||
thanx();
|
||||
contact();
|
||||
givenote();
|
||||
seemembres();
|
||||
chatopen();
|
||||
errorbox();
|
||||
deploynews();
|
||||
|
||||
// quand on a fait un lien depuis un membre
|
||||
|
||||
if (typeof (flag) != 'undefined'){
|
||||
flag=flag.substr(23);
|
||||
// les-membres.php?member=Lukia
|
||||
$.ajax({
|
||||
url: "classmembres.php?pseudo="+flag+"",
|
||||
success: function(data){
|
||||
$("#rightmembres").html(data);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// on pousse la page vue dans le tableau Google Analytics
|
||||
_gaq.push(['_trackPageview','/'+lien]);
|
||||
// controle IE ( IE <=9 incompatible avec history.pushState)
|
||||
if($.browser['msie']===false || $.browser['msie']===true && version>=10.0){
|
||||
history.pushState('','Hardcore Hentai Heaquarter V3 - '+titrepage, lien);
|
||||
}
|
||||
document.title = 'Hardcore Hentai Heaquarter V3 - '+titrepage;
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
e.preventDefault();
|
||||
|
||||
});
|
||||
|
|
245
include/head.php
245
include/head.php
|
@ -15,131 +15,140 @@
|
|||
|############################################################|
|
||||
|###########_____SITE V3 - POLE DEVELOPPEMENT_____###########|
|
||||
-->
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<title><?php echo $titredelapage;?> - Hardcore Hentai Heaquarter V3</title>
|
||||
<meta name="description" content="Hardcore Hentai Headquarter - La plus vieille team de scantrad hentai de France, fournisseur de plaisir depuis 2004"/>
|
||||
<meta name="keywords" content="hentai,manga,scantrad,français,team,hhh,scan,oasis,doujinshi,headquarter,french"/>
|
||||
<meta name="author" content="Lukia, Yumemi, Albirew" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="apple-touch-icon" href="apple-touch-icon-precomposed.png">
|
||||
<link rel="stylesheet" href="design/css.css?=refreshtwitter">
|
||||
<script src="design/js/jquery.mousewheel.js"></script>
|
||||
<script src="design/js/perfect-scrollbar.js"></script>
|
||||
<script src="design/js/jquery.transit.min.js"></script>
|
||||
<script src="design/js/interface.js?=refresh"></script>
|
||||
<script src="design/js/paper-full.min.js"></script>
|
||||
<!-- Load external PaperScript and associate it with myCanvas -->
|
||||
<!--<script type="text/paperscript" src="design/js/paperbullehhh.js" canvas="myCanvas"></script>-->
|
||||
<!--[if lte IE 8]>
|
||||
<script src="design/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
<div id="disclaimer">
|
||||
<div id="logoaccueil"></div>
|
||||
<p>
|
||||
Ce site Internet contient des textes, images et vidéos à caractère pornographique qui peuvent choquer certaines sensibilités, par conséquent :<br/><br/>
|
||||
- L'accès à ce site est strictement interdit aux mineurs.<br/>
|
||||
- Le contenu de ce site ne doit pas être diffusé à des mineurs.<br/>
|
||||
- En entrant sur ce site je certifie être majeur selon les lois du pays depuis lequel j'y accède.
|
||||
|
||||
|
||||
</p>
|
||||
<div id="entree">Entrer</div>
|
||||
<div id="sortie"><a href="http://www.pokemon.com/fr/">Sortir</a></div>
|
||||
|
||||
</div>
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<title><?php echo $titredelapage;?> - Hardcore Hentai Heaquarter V3</title>
|
||||
<meta name="description" content="Hardcore Hentai Headquarter - La plus vieille team de scantrad hentai de France, fournisseur de plaisir depuis 2004"/>
|
||||
<meta name="keywords" content="hentai,manga,scantrad,français,team,hhh,scan,oasis,doujinshi,headquarter,french"/>
|
||||
<meta name="author" content="Lukia, Yumemi, Albirew" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta property="og:title" content="Hardcore Hentai Heaquarter" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://hhh-world.com/" />
|
||||
<meta property="og:image:secure_url" content="https://hhh-world.com/hhh.png" />
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<link rel="apple-touch-icon" href="apple-touch-icon-precomposed.png">
|
||||
<link rel="stylesheet" href="design/css.css?=20161116">
|
||||
<link rel="stylesheet" href="design/gfonts.css?=20161116">
|
||||
<?php /* dépendre de google, caymal
|
||||
<link href='https://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
|
||||
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
|
||||
<script src="design/js/jquery-1.11.0.js"></script>
|
||||
*/ ?>
|
||||
<script src="design/js/jquery-1.11.0.min.js"></script>
|
||||
<script src="design/js/jquery.mousewheel.js"></script>
|
||||
<script src="design/js/perfect-scrollbar.js"></script>
|
||||
<script src="design/js/jquery.transit.min.js"></script>
|
||||
<script src="design/js/interface.js?=20161116"></script>
|
||||
<script src="design/js/paper-full.min.js"></script>
|
||||
<noscript>Bienvenue en 2016, veuillez activer JavaScript pour naviguer sur notre site ;)</noscript>
|
||||
<?php /*
|
||||
<!-- Load external PaperScript and associate it with myCanvas -->
|
||||
<script type="text/paperscript" src="design/js/paperbullehhh.js" canvas="myCanvas"></script>
|
||||
*/ ?>
|
||||
<!--[if lte IE 8]>
|
||||
<script src="design/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
<div id="disclaimer">
|
||||
<div id="logoaccueil"></div>
|
||||
<p>
|
||||
<noscript>Bienvenue en 2016, veuillez activer JavaScript pour naviguer sur notre site ;)<br><br></noscript>
|
||||
Ce site Internet contient des textes, images et vidéos à caractère pornographique qui peuvent choquer certaines sensibilités, par conséquent :<br/><br/>
|
||||
- L'accès à ce site est strictement interdit aux mineurs.<br/>
|
||||
- Le contenu de ce site ne doit pas être diffusé à des mineurs.<br/>
|
||||
- En entrant sur ce site je certifie être majeur selon les lois du pays depuis lequel j'y accède.
|
||||
|
||||
</p>
|
||||
<div id="entree">Entrer</div>
|
||||
<div id="sortie"><a href="http://www.pokemon.com/fr/">Sortir</a></div>
|
||||
|
||||
</div>
|
||||
|
||||
<?php
|
||||
// on va aller se chercher le nombre de projet en fonction de sa catégorie dans le site :)
|
||||
include 'countprojet.php';
|
||||
?>
|
||||
<header data-deploy="false">
|
||||
<div id="closemenu">×</div>
|
||||
<div id="logo"><img src="design/img/logoblancpetit.png" alt="logo HHH"></div>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="news.php" title="Lire les news">News</a>
|
||||
<ul>
|
||||
<li><a href="index.php" title="les dernière news">Les dernières news</a></li>
|
||||
<li><a href="archives-des-news.php" title="les archives des news">Les archives des news</a></li>
|
||||
<li><a href="best-of-des-news.php" title="le best-of des news">Le best-of des news</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="projets.php" title="Les projets de la team">Projets</a>
|
||||
<ul>
|
||||
<li><a href="projets-en-cours.php" title="Tous les mangas actuellement en cours de traduction">Projets en cours (<?php echo $catencours ?>)</a></li>
|
||||
<li><a href="projets-termines.php" title="Tous les mangas terminés">Projets terminés (<?php echo $catfini ?>)</a></li>
|
||||
<li><a href="liste-complete-des-releases.php" title="La liste complète de nos projets">Liste complète des releases</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="atelier.php" title="Tout sur l'atelier de la HHH">Atelier</a>
|
||||
<ul>
|
||||
<li><a href="boite-a-erreur.php" title="La correction c'est par ici">Boite à erreur</a></li>
|
||||
<li><a href="le-fonctionnement-de-l-atelier.php" title="Comment fonctionne la HHH">Le fonctionnement de l'atelier</a></li>
|
||||
<li><a href="recrutement.php" title="Travailler avec la HHH">Recrutement</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="team.php" title="Tout savoir sur l'équipe">Team</a>
|
||||
<ul>
|
||||
<li><a href="faire-un-don.php" title="Aidez à faire vivre la HHH">Faire un don</a></li>
|
||||
<li><a href="qui-est-la-HHH.php" title="Qu'est-ce que la HHH ?">Qu'est la HHH ?</a></li>
|
||||
<li><a href="les-membres.php" title="Une belle équipe !">Les membres</a></li>
|
||||
<li><a href="contact.php" title="Contactez-nous">Nous contacter</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="irc.php" title="Le protocole de communication par excellence">IRC</a>
|
||||
<ul>
|
||||
<li><a href="client-irc-mibbit.php" title="Chattez avec nous sans installation">Client IRC Mibbit</a></li>
|
||||
<li><a href="client-irc-kvirc-luxuria.php" title="Le client IRC de la HHH">Client KVirc Luxuria</a></li>
|
||||
<li><a href="liste-xdcc.php" title="La liste des projets téléchargeable sur IRC">Liste XDCC</a></li>
|
||||
<li><a href="tutoriels-irc.php" title="Des tutoriels pour IRC">Tutoriels IRC</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="bonus.php" title="La HHH dépasse les limites">Bonus</a>
|
||||
<ul>
|
||||
<li><a href="hors-serie.php" title="Les chapitres exceptionnels">Hors série (<?php echo $cathorsserie ?>)</a></li>
|
||||
<li><a href="animes.php" title="Parce qu'on sait AUSSI faire du fansub">Animes (<?php echo $catanime ?>)</a></li>
|
||||
<li><a href="artworks.php" title="Photoshop ne sert pas qu'à faire du scantrad.">Artworks</a></li>
|
||||
<li><a href="jeux.php" title="Des jeux que l'équipe a développé aux jeux auxquels nous adorons jouer.">Jeux (<?php echo $catjeux ?>)</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div id="animationcontrol">Arrêter l'animation du fond</div>
|
||||
|
||||
</header>
|
||||
<canvas id="myCanvas" resize></canvas>
|
||||
<div id="main">
|
||||
<div id="entete">
|
||||
<div id="deploynav"></div>
|
||||
<h1><a href="index.php">Hardcore Hentai Headquarter <span>Hentai français depuis 2004</span></a></h1>
|
||||
<div id="gadget">
|
||||
<a href="rss.php" title="RSS"><div></div></a>
|
||||
<a href="https://www.facebook.com/hardcorehentaiheadquarter" title="Facebook" target="_blank"><div></div></a>
|
||||
<a href="https://twitter.com/HHH_World" title="Twitter" target="_blank"><div></div></a>
|
||||
<div id="triggercontact"></div>
|
||||
</div>
|
||||
</div>
|
||||
<h2><?php echo $titredelapage;?></h2>
|
||||
<div id="content">
|
||||
<div id="dynabox">
|
||||
<header data-deploy="false">
|
||||
<div id="closemenu">×</div>
|
||||
<div id="logo"><img src="design/img/logoblancpetit.png" alt="logo HHH"></div>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="news.php" title="Lire les news">News</a>
|
||||
<ul>
|
||||
<li><a href="index.php" title="les dernière news">Les dernières news</a></li>
|
||||
<li><a href="archives-des-news.php" title="les archives des news">Les archives des news</a></li>
|
||||
<li><a href="best-of-des-news.php" title="le best-of des news">Le best-of des news</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="projets.php" title="Les projets de la team">Projets</a>
|
||||
<ul>
|
||||
<li><a href="https://lel.hhh-world.com" title="Tous les projets à lire en ligne !">Lecture en Ligne</a></li>
|
||||
<li><a href="projets-en-cours.php" title="Tous les mangas actuellement en cours de traduction">Projets en cours (<?php echo $catencours ?>)</a></li>
|
||||
<li><a href="projets-termines.php" title="Tous les mangas terminés">Projets terminés (<?php echo $catfini ?>)</a></li>
|
||||
<li><a href="liste-complete-des-releases.php" title="La liste complète de nos projets">Liste complète des releases</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="atelier.php" title="Tout sur l'atelier de la HHH">Atelier</a>
|
||||
<ul>
|
||||
<li><a href="boite-a-erreur.php" title="La correction c'est par ici">Boite à erreur</a></li>
|
||||
<li><a href="le-fonctionnement-de-l-atelier.php" title="Comment fonctionne la HHH">Le fonctionnement de l'atelier</a></li>
|
||||
<li><a href="recrutement.php" title="Travailler avec la HHH">Recrutement</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="team.php" title="Tout savoir sur l'équipe">Team</a>
|
||||
<ul>
|
||||
<li><a href="faire-un-don.php" title="Aidez à faire vivre la HHH">Faire un don</a></li>
|
||||
<li><a href="qui-est-la-HHH.php" title="Qu'est-ce que la HHH ?">Qu'est la HHH ?</a></li>
|
||||
<li><a href="les-membres.php" title="Une belle équipe !">Les membres</a></li>
|
||||
<li><a href="contact.php" title="Contactez-nous">Nous contacter</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="irc.php" title="Le protocole de communication par excellence">IRC</a>
|
||||
<ul>
|
||||
<li><a href="client-irc-mibbit.php" title="Chattez avec nous sans installation">Client IRC Mibbit</a></li>
|
||||
<li><a href="client-irc-kvirc-luxuria.php" title="Le client IRC de la HHH">Client KVirc Luxuria</a></li>
|
||||
<li><a href="liste-xdcc.php" title="La liste des projets téléchargeable sur IRC">Liste XDCC</a></li>
|
||||
<li><a href="tutoriels-irc.php" title="Des tutoriels pour IRC">Tutoriels IRC</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<a href="bonus.php" title="La HHH dépasse les limites">Bonus</a>
|
||||
<ul>
|
||||
<li><a href="hors-serie.php" title="Les chapitres exceptionnels">Hors série (<?php echo $cathorsserie ?>)</a></li>
|
||||
<li><a href="animes.php" title="Parce qu'on sait AUSSI faire du fansub">Animes (<?php echo $catanime ?>)</a></li>
|
||||
<li><a href="artworks.php" title="Photoshop ne sert pas qu'à faire du scantrad.">Artworks</a></li>
|
||||
<li><a href="jeux.php" title="Des jeux que l'équipe a développé aux jeux auxquels nous adorons jouer.">Jeux (<?php echo $catjeux ?>)</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div id="animationcontrol">Arrêter l'animation du fond</div>
|
||||
|
||||
</header>
|
||||
<canvas id="myCanvas" resize></canvas>
|
||||
<div id="main">
|
||||
<div id="entete">
|
||||
<div id="deploynav"></div>
|
||||
<h1><a href="index.php">Hardcore Hentai Headquarter <span>Hentai français depuis 2004</span></a></h1>
|
||||
<div id="gadget">
|
||||
<a href="rss.php" title="RSS"><div></div></a>
|
||||
<a href="https://www.facebook.com/hardcorehentaiheadquarter" title="Facebook" target="_blank"><div></div></a>
|
||||
<a href="https://twitter.com/HHH_World" title="Twitter" target="_blank"><div></div></a>
|
||||
<div id="triggercontact"></div>
|
||||
</div>
|
||||
</div>
|
||||
<h2><?php echo $titredelapage;?></h2>
|
||||
<div id="content">
|
||||
<div id="dynabox">
|
Référencer dans un nouveau ticket