4 |
david |
1 |
<?php
|
|
|
2 |
include_once 'authentification.php' ;
|
|
|
3 |
if (!isset($debut_article)) {
|
|
|
4 |
$debut_article=0;
|
|
|
5 |
}
|
|
|
6 |
$nb_affiche=10;
|
|
|
7 |
?>
|
|
|
8 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
9 |
<html lang="#LANG">
|
|
|
10 |
|
|
|
11 |
<BOUCLE_principale(RUBRIQUES){id_rubrique}{doublons}>
|
|
|
12 |
<head>
|
|
|
13 |
<title>[(#TITRE|supprimer_numero)]</title>
|
|
|
14 |
<INCLURE(incl_link_entete.php)>
|
|
|
15 |
</head>
|
|
|
16 |
|
|
|
17 |
<body>
|
|
|
18 |
<div id="reducteur">
|
|
|
19 |
<INCLURE(incl_bandeau.php)>
|
|
|
20 |
<!-- Parcours de navigation -->
|
|
|
21 |
<div id="droite">
|
|
|
22 |
<div id="pos_recherche">
|
|
|
23 |
Vous êtes ici : <a href="sommaire.php3"> Accueil </a> >
|
|
|
24 |
<BOUCLE_hier(HIERARCHIE) {id_rubrique}>
|
|
|
25 |
<a href="#URL_RUBRIQUE">[(#TITRE|couper{30}|supprimer_numero)]</a> >
|
|
|
26 |
</BOUCLE_hier>[(#TITRE|supprimer_numero|couper{30})]
|
|
|
27 |
</div>
|
|
|
28 |
<INCLURE(incl_mot_recherche.php)>
|
|
|
29 |
<!-- Corps de la page -->
|
|
|
30 |
<div id="contenu">
|
130 |
magali |
31 |
<div id="contenu_rubrique">
|
4 |
david |
32 |
<!-- Rubriques -->
|
|
|
33 |
<BOUCLE_corps_rubriques(RUBRIQUES){id_rubrique}>
|
|
|
34 |
<!-- Articles de la rubrique -->
|
|
|
35 |
<BOUCLE_articles_rubrique(ARTICLES){id_rubrique}{par date} {inverse} {"<hr />"}{debut_article,10}>
|
|
|
36 |
<div class="menu_titre">
|
|
|
37 |
[<a href="#URL_ARTICLE">(#LOGO_ARTICLE|right)</a>]
|
|
|
38 |
<div class="intituler_rubrique"><a href="#URL_ARTICLE">#TITRE</a></div>
|
94 |
jpm |
39 |
<div class="date">Mis en ligne [(#DATE|nom_jour)] [(#DATE|affdate)]
|
4 |
david |
40 |
<B_auteurs_un><:par_auteur:> <BOUCLE_auteurs_un(AUTEURS) {id_article} {", "}>
|
|
|
41 |
#NOM</BOUCLE_auteurs_un>
|
|
|
42 |
<B_motscles>
|
|
|
43 |
-<span class="categorie">
|
|
|
44 |
<BOUCLE_motscles(MOTS){id_article}{type=Thématiques}{", "}> <a href="#URL_MOT">[(#TITRE|supprimer_numero)]</a></BOUCLE_motscles>
|
|
|
45 |
</span>
|
|
|
46 |
</B_motscles>
|
|
|
47 |
</div>
|
|
|
48 |
<div class="descriptif_contenu ">[(#INTRODUCTION|couper{400})] <a href="#URL_ARTICLE">Lire la suite ...</a></div>
|
|
|
49 |
[<div ><:voir_en_ligne:> : <a href="#URL_SITE" >(#NOM_SITE)</a></div>]
|
|
|
50 |
</div>
|
|
|
51 |
</BOUCLE_articles_rubrique>
|
|
|
52 |
<!-- article: number ? -->
|
|
|
53 |
<?php $nb_art_total=0; ?>
|
|
|
54 |
<BOUCLE_art_count(ARTICLES){id_rubrique}>
|
|
|
55 |
<?php $nb_art_total++ ?>
|
|
|
56 |
</BOUCLE_art_count>
|
|
|
57 |
<?php
|
|
|
58 |
if ($nb_art_total > $nb_affiche) {
|
|
|
59 |
echo "<div id=\"postarticle\">Pages : ";
|
|
|
60 |
if ($debut_article >= $nb_affiche) {
|
|
|
61 |
echo "<a href=\"rubrique.php3?id_rubrique=#ID_RUBRIQUE&debut_article=".($debut_article-$nb_affiche)."\">Page précédente</a> ";
|
|
|
62 |
}
|
|
|
63 |
for ($article = 0, $page = 1; $article < $nb_art_total; $article += $nb_affiche, $page++) {
|
|
|
64 |
if ($debut_article != $article) {
|
|
|
65 |
echo "<a href=\"rubrique.php3?id_rubrique=#ID_RUBRIQUE&debut_article=$article\">$page</a> " ;
|
|
|
66 |
} else {
|
|
|
67 |
echo $page." " ;
|
|
|
68 |
}
|
|
|
69 |
}
|
|
|
70 |
if ($debut_article + $nb_affiche <$nb_art_total) {
|
|
|
71 |
?>
|
|
|
72 |
<a href="rubrique.php3?id_rubrique=#ID_RUBRIQUE&debut_article=<?php echo $debut_article + $nb_affiche; ?>">Page suivante</a>
|
|
|
73 |
<?php } ?>
|
|
|
74 |
<br />Nombre total d'articles de la rubrique : <?php echo $nb_art_total; ?>
|
|
|
75 |
<?php
|
|
|
76 |
echo "</div>";
|
|
|
77 |
}
|
|
|
78 |
?>
|
|
|
79 |
<B_corps_sous_rubriques>
|
|
|
80 |
<div class="menu_titre">
|
|
|
81 |
<BOUCLE_corps_sous_rubriques(RUBRIQUES){id_parent}{par date}{inverse}>
|
|
|
82 |
[<a href="#URL_ARTICLE">(#LOGO_RUBRIQUE|right)</a>]
|
|
|
83 |
<div class="intituler_rubrique">
|
|
|
84 |
<img src="IMG/emblem-web-18.png" width="18px" height="18px" /> <a href="#URL_RUBRIQUE">#TITRE</a>
|
|
|
85 |
</div>
|
|
|
86 |
<div class="descriptif_contenu ">#TEXTE</div>
|
|
|
87 |
<p style="clear:both"></p>
|
|
|
88 |
</BOUCLE_corps_sous_rubriques>
|
|
|
89 |
</div>
|
|
|
90 |
</B_corps_sous_rubriques>
|
|
|
91 |
<!-- Liens des forums -->
|
|
|
92 |
<h1><:Forum:></h1>
|
|
|
93 |
<ul>
|
|
|
94 |
<B_forum_rubrique>
|
|
|
95 |
<h2><:derniers_commentaires:></h2>
|
|
|
96 |
<br />
|
|
|
97 |
<BOUCLE_forum_rubrique(ARTICLES) {id_rubrique}>
|
|
|
98 |
<BOUCLE_forum_article(FORUMS) {id_article} {0,1}>
|
|
|
99 |
<li><div class="date">[(#DATE|affdate), ]</div><a href="#URL_ARTICLE">#TITRE</a></li>
|
|
|
100 |
</BOUCLE_forum_article>
|
|
|
101 |
</BOUCLE_forum_rubrique>
|
|
|
102 |
</B_forum_rubrique>
|
|
|
103 |
<div class="texte">Il n'y a pas de commentaires dans cette rubrique</div>
|
|
|
104 |
<div class="texte"><:participer_site:></div>
|
|
|
105 |
<//B_forum_rubrique>
|
|
|
106 |
</ul>
|
|
|
107 |
</BOUCLE_corps_rubriques>
|
|
|
108 |
</div>
|
|
|
109 |
|
130 |
magali |
110 |
</div>
|
4 |
david |
111 |
|
|
|
112 |
|
|
|
113 |
<INCLURE(incl_footer.php)>
|
|
|
114 |
</div>
|
|
|
115 |
<!-- Menu de navigation rubriques -->
|
|
|
116 |
|
|
|
117 |
|
|
|
118 |
|
|
|
119 |
|
|
|
120 |
<div id="nav_gauche">
|
|
|
121 |
<INCLURE(incl_logo_tela.php)>
|
|
|
122 |
<INCLURE(incl_changer_monde.php)>
|
|
|
123 |
<?php $rub = "#ID_SECTEUR" ;?>
|
|
|
124 |
<INCLURE(incl_menu_gauche.php)>
|
|
|
125 |
<INCLURE(incl_identification_ellipse.php)>
|
|
|
126 |
|
|
|
127 |
</div>
|
|
|
128 |
<INCLURE(incl_footer_print.php)>
|
|
|
129 |
</div>
|
|
|
130 |
|
|
|
131 |
</BOUCLE_principale>
|
|
|
132 |
|
|
|
133 |
</body>
|
|
|
134 |
</html>
|