4 |
david |
1 |
<?php
|
|
|
2 |
include_once 'authentification.php' ;
|
|
|
3 |
if (!isset($debut_article)) {
|
326 |
jpm |
4 |
$debut_article = 0;
|
4 |
david |
5 |
}
|
326 |
jpm |
6 |
$nb_affiche = 10;
|
4 |
david |
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)>
|
323 |
jpm |
20 |
<div id="droite">
|
|
|
21 |
<!-- Parcours de navigation -->
|
4 |
david |
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)>
|
323 |
jpm |
29 |
|
4 |
david |
30 |
<!-- Corps de la page -->
|
|
|
31 |
<div id="contenu">
|
323 |
jpm |
32 |
<div id="info_dte">
|
242 |
jpm |
33 |
<INCLURE(incl_rss.php)>
|
|
|
34 |
</div>
|
|
|
35 |
<div id="contenu_rubrique">
|
4 |
david |
36 |
<!-- Rubriques -->
|
|
|
37 |
<BOUCLE_corps_rubriques(RUBRIQUES){id_rubrique}>
|
|
|
38 |
<!-- Articles de la rubrique -->
|
|
|
39 |
<BOUCLE_articles_rubrique(ARTICLES){id_rubrique}{par date} {inverse} {"<hr />"}{debut_article,10}>
|
|
|
40 |
<div class="menu_titre">
|
326 |
jpm |
41 |
<h2 class="intituler_rubrique"><a href="#URL_ARTICLE">#TITRE</a></h2>
|
|
|
42 |
[<a href="#URL_ARTICLE">(#LOGO_ARTICLE|right)</a>]
|
|
|
43 |
<p class="date">Mis en ligne [(#DATE|nom_jour)] [(#DATE|affdate)]
|
|
|
44 |
<B_auteurs_un><:par_auteur:> <BOUCLE_auteurs_un(AUTEURS) {id_article} {", "}>
|
|
|
45 |
#NOM</BOUCLE_auteurs_un>
|
|
|
46 |
<B_motscles>
|
|
|
47 |
-<span class="categorie">
|
|
|
48 |
<BOUCLE_motscles(MOTS){id_article}{type=Thématiques}{", "}> <a href="#URL_MOT">[(#TITRE|supprimer_numero)]</a></BOUCLE_motscles>
|
|
|
49 |
</span>
|
|
|
50 |
</B_motscles>
|
|
|
51 |
</p>
|
|
|
52 |
<p class="descriptif_contenu ">[(#INTRODUCTION|couper{400})] <a href="#URL_ARTICLE">Lire la suite ...</a></p>
|
|
|
53 |
[<p><:voir_en_ligne:> : <a href="#URL_SITE" >(#NOM_SITE)</a></p>]
|
4 |
david |
54 |
</div>
|
|
|
55 |
</BOUCLE_articles_rubrique>
|
326 |
jpm |
56 |
</div>
|
|
|
57 |
</div>
|
|
|
58 |
<!-- article: number ? -->
|
|
|
59 |
<?php
|
|
|
60 |
$requete = 'SELECT COUNT(*) AS nbr FROM spip_articles WHERE id_secteur = '.$id_rubrique;
|
|
|
61 |
mysql_select_db('tela_prod_spip_actu');
|
|
|
62 |
$resultat = mysql_query($requete);
|
|
|
63 |
if (!$resultat) {
|
|
|
64 |
echo mysql_error($resultat);
|
|
|
65 |
}
|
|
|
66 |
$ligne = mysql_fetch_object($resultat);
|
|
|
67 |
$nb_art_total = $ligne->nbr;
|
|
|
68 |
if ($nb_art_total > $nb_affiche) {
|
|
|
69 |
echo '<hr/><div id="postarticle">Pages :<br />';
|
|
|
70 |
if ($debut_article >= $nb_affiche) {
|
|
|
71 |
echo '<a href="rubrique.php3?id_rubrique=#ID_RUBRIQUE&debut_article='.($debut_article-$nb_affiche).'">Page précédente</a><br />';
|
|
|
72 |
}
|
|
|
73 |
for ($article = 0, $page = 1; $article < $nb_art_total; $article += $nb_affiche, $page++) {
|
|
|
74 |
if ($debut_article != $article) {
|
|
|
75 |
echo '<a href="rubrique.php3?id_rubrique=#ID_RUBRIQUE&debut_article='.$article.'">'.$page.'</a> ';
|
|
|
76 |
} else {
|
|
|
77 |
echo $page.' ';
|
|
|
78 |
}
|
|
|
79 |
}
|
|
|
80 |
if ($debut_article + $nb_affiche < $nb_art_total) {
|
|
|
81 |
echo '<br /><a href="rubrique.php3?id_rubrique=#ID_RUBRIQUE&debut_article='.($debut_article + $nb_affiche).'">Page suivante</a>';
|
|
|
82 |
}
|
|
|
83 |
echo '<p>Nombre total d\'articles de la rubrique : '.$nb_art_total.'</p>';
|
|
|
84 |
echo '</div>';
|
|
|
85 |
}
|
|
|
86 |
?>
|
4 |
david |
87 |
<B_corps_sous_rubriques>
|
|
|
88 |
<div class="menu_titre">
|
|
|
89 |
<BOUCLE_corps_sous_rubriques(RUBRIQUES){id_parent}{par date}{inverse}>
|
|
|
90 |
[<a href="#URL_ARTICLE">(#LOGO_RUBRIQUE|right)</a>]
|
|
|
91 |
<div class="intituler_rubrique">
|
326 |
jpm |
92 |
<img src="IMG/emblem-web-18.png" width="18px" height="18px" /> <a href="#URL_RUBRIQUE">#TITRE</a>
|
4 |
david |
93 |
</div>
|
|
|
94 |
<div class="descriptif_contenu ">#TEXTE</div>
|
|
|
95 |
<p style="clear:both"></p>
|
|
|
96 |
</BOUCLE_corps_sous_rubriques>
|
|
|
97 |
</div>
|
|
|
98 |
</B_corps_sous_rubriques>
|
|
|
99 |
<!-- Liens des forums -->
|
|
|
100 |
<h1><:Forum:></h1>
|
|
|
101 |
<ul>
|
|
|
102 |
<B_forum_rubrique>
|
|
|
103 |
<h2><:derniers_commentaires:></h2>
|
|
|
104 |
<br />
|
|
|
105 |
<BOUCLE_forum_rubrique(ARTICLES) {id_rubrique}>
|
|
|
106 |
<BOUCLE_forum_article(FORUMS) {id_article} {0,1}>
|
|
|
107 |
<li><div class="date">[(#DATE|affdate), ]</div><a href="#URL_ARTICLE">#TITRE</a></li>
|
|
|
108 |
</BOUCLE_forum_article>
|
|
|
109 |
</BOUCLE_forum_rubrique>
|
|
|
110 |
</B_forum_rubrique>
|
|
|
111 |
<div class="texte">Il n'y a pas de commentaires dans cette rubrique</div>
|
|
|
112 |
<div class="texte"><:participer_site:></div>
|
|
|
113 |
<//B_forum_rubrique>
|
|
|
114 |
</ul>
|
|
|
115 |
</BOUCLE_corps_rubriques>
|
326 |
jpm |
116 |
<INCLURE(incl_footer.php)>
|
242 |
jpm |
117 |
</div>
|
|
|
118 |
<!-- Menu de navigation rubriques -->
|
|
|
119 |
<div id="nav_gauche">
|
|
|
120 |
<INCLURE(incl_logo_tela.php)>
|
|
|
121 |
<INCLURE(incl_changer_monde.php)>
|
|
|
122 |
<?php $rub = "#ID_SECTEUR" ;?>
|
|
|
123 |
<INCLURE(incl_menu_gauche.php)>
|
|
|
124 |
<INCLURE(incl_identification_ellipse.php)>
|
|
|
125 |
</div>
|
|
|
126 |
<INCLURE(incl_footer_print.php)>
|
|
|
127 |
</div>
|
|
|
128 |
</BOUCLE_principale>
|
|
|
129 |
</body>
|
4 |
david |
130 |
</html>
|