Subversion Repositories Sites.tela-botanica.org

Rev

Rev 171 | Rev 326 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 david 1
<?php
2
include_once 'authentification.php' ;
124 magali 3
if (!isset($debut_article)) {
4
    $debut_article=0;
5
}
4 david 6
?>
7
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
8
<html lang="#LANG">
9
<head>
10
<title>#NOM_SITE_SPIP</title>
11
<INCLURE(incl_link_entete.php)>
12
</head>
13
 
14
<body >
15
<div id="reducteur">
16
    <div id="acces_direct">
17
      <a href="#nav_gauche">Aller aux menus</a>
18
      <a href="#contenu_accueil">Aller au texte</a>
19
      <a href="#info_dte">Aller aux infos</a>
20
    </div>
21
    <INCLURE(incl_bandeau.php)>
22
    <!-- Parcours de navigation -->
171 magali 23
    <div id="pos_recherche">Vous &ecirc;tes ici : Accueil : <:derniers_articles:>
24
    </div>
25
    <INCLURE(incl_mot_recherche.php)>
4 david 26
    <div id="droite">
27
        <div id="contenu_accueil">
124 magali 28
        	<div id="info_dte">
242 jpm 29
				<INCLURE(incl_rss.php)>
124 magali 30
			</div>
171 magali 31
            <!-- Une : derniers articles publies -->
32
            <BOUCLE_article_un(ARTICLES) {tout} {id_secteur != 28}{par date} {inverse} {debut_article,20}>
33
            <div class="menu_titre">
34
            	<div class="intituler_rubrique"><a href="#URL_ARTICLE">#TITRE</a>
4 david 35
                </div>
171 magali 36
                <div><span class="date">Mis en ligne [(#DATE|nom_jour)] [(#DATE|affdate)]
37
                                <B_auteurs_un><:par_auteur:> <BOUCLE_auteurs_un(AUTEURS) {id_article} {", "}>#NOM</BOUCLE_auteurs_un></span>
38
                </div>
39
                <div class="descriptif_contenu">[(#INTRODUCTION|couper{400})]&nbsp;<a href="#URL_ARTICLE">Lire la suite ...</a>
40
                </div>
41
            </div>
42
            </BOUCLE_article_un>
43
            </B_article_un>
44
            <!-- article: number ? -->
124 magali 45
                <?php $nb_art_total=0; $nb_affiche=20;
46
				$requet='select count(*) as nbr from spip_articles where id_secteur<>28 and id_secteur<>45';
47
				mysql_select_db ('tela_prod_spip_actu');
48
				$resultat=mysql_query($requet);
49
				if (!$resultat) echo mysql_error($resultat);
50
				$ligne=mysql_fetch_object($resultat);
51
				$nb_art_total= $ligne -> nbr;
52
            if ($nb_art_total > $nb_affiche) {
53
                echo "<div id=\"postarticle\">Pages&nbsp;:&nbsp;";
54
                if ($debut_article >= $nb_affiche) {
55
                    echo "<a href=\"sommaire.php3?debut_article=".($debut_article-$nb_affiche)."\">Page pr&eacute;c&eacute;dente</a>&nbsp;";
56
                }
57
                for ($article = 0, $page = 1; $article < $nb_art_total; $article += $nb_affiche, $page++) {
58
                    if ($debut_article != $article) {
59
                        echo "<a href=\"sommaire.php3?&debut_article=$article\">$page</a>&nbsp;" ;
60
                    } else {
61
                        echo $page."&nbsp;" ;
62
                    }
63
                }
64
                if ($debut_article + $nb_affiche <$nb_art_total) {
65
                ?>
66
                            <a href="sommaire.php3?&debut_article=<?php echo $debut_article + $nb_affiche; ?>">Page suivante</a>
67
                            <?php } ?>
68
                        <br />Nombre total d'articles de la rubrique : <?php echo $nb_art_total; ?>
69
                        <?php
70
                echo "</div>";
71
                        }
72
                        ?>
4 david 73
        </div>
171 magali 74
 
124 magali 75
 
4 david 76
    </div>
171 magali 77
        <INCLURE(incl_footer.php)>
4 david 78
 
79
<!-- Menu de navigation rubriques -->
80
 
124 magali 81
	<div id="nav_gauche">
82
		<INCLURE(incl_logo_tela.php)>
83
		<INCLURE(incl_changer_monde.php)>
84
		<INCLURE(incl_menu_gauche.php)>
85
		<INCLURE(incl_identification_ellipse.php)>
86
	</div>
4 david 87
 
124 magali 88
 
89
	<INCLURE(incl_footer_print.php)>
4 david 90
</div>
91
 
92
</body>
93
</html>