Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
1487 mathias 1
<div class="layout-content-col">
1482 delphine 2
	<div class="layout-wrapper">
3
		<aside class="layout-column">
1502 delphine 4
			<div class="toc affix-top">
5
				<div class="toc-title">
6
					<?php if($nom_vernaculaire): ?>
7
						<?=$nom_vernaculaire;?><br />
8
					<?php endif; ?>
9
					<?php if($nom_appele_html): ?>
10
						<span class="redirige_depuis">
11
							Nom recherché : <?= $nom_appele_html ?>
12
						</span><br />
13
					<?php endif; ?>
14
					<span class="component-text nomenclature"><?=$nom_retenu_html?></span>
1510 killian 15
 
16
					<?php if($famille != '') { ?>
17
						<span class="component-text famille nomenclature" >
18
							<a class="lien_recherche_hier" title="<?= $i18n['lien-recherche-hier-fam']; ?>" href="<?= $lien_recherche_famille ?>"> <?= $famille; ?> </a>
19
						</span>
20
					<?php } ?>
21
 
1502 delphine 22
				</div>
23
				<? $url = htmlentities($urlBase . '?referentiel='.Registre::get('parametres.referentiel').'&niveau='.Registre::get('parametres.niveau').'&module=fiche&action=fiche&num_nom='.$num_nom.'&type_nom='.$type_nom.'&nom='.$nom.'&onglet=');?>
24
				<ul class="toc-items">
25
					<li class="toc-item <?= ($onglet == 'synthese') ? 'is-active' : '' ;?>" title="<?=$i18n['onglet-descr-synth']?>" id="onglet_synthese">
26
						<a class="toc-item-link" rel="synthese" href="<?=$url;?>synthese">
27
							<?=$i18n["onglet-nom-synth"]?></a>
28
					</li>
29
					<li class="toc-item <?= ($onglet == 'description') ? 'is-active' : '' ;?>" title="<?=$i18n['onglet-descr-descr']?>">
30
						<a class="toc-item-link" rel="description" href="<?=$url;?>description">
31
							<?=$i18n["onglet-nom-descr"]?></a>
32
					</li>
33
					<li title="<?=$i18n['onglet-descr-illustra']?>" class="toc-item <?= ($onglet == 'illustrations') ? 'is-active' : '' ;?>">
34
						<a class="toc-item-link" rel="illustrations" href="<?=$url;?>illustrations">
35
							<?=$i18n["onglet-nom-illustra"]?></a>
36
					</li>
37
					<li title="<?=$i18n['onglet-descr-repart']?>" class="toc-item <?= ($onglet == 'repartition') ? 'is-active' : '' ;?>">
38
						<a class="toc-item-link" rel="repartition" href="<?=$url;?>repartition">
39
							<?=$i18n["onglet-nom-repart"]?></a>
40
					</li>
41
					<li title="<?=$i18n['onglet-descr-ethnobota']?>" class="toc-item <?= ($onglet == 'ethnobotanique') ? 'is-active' : '' ;?>">
42
						<a class="toc-item-link" rel="ethnobotanique" href="<?=$url;?>ethnobotanique">
43
							<?=$i18n["onglet-nom-ethnobota"]?></a>
44
					</li>
45
					<li title="<?=$i18n['onglet-descr-eco']?>" class="toc-item <?= ($onglet == 'ecologie') ? 'is-active' : '' ;?>">
46
						<a class="toc-item-link" rel="ecologie" href="<?=$url;?>ecologie">
47
							<?=$i18n["onglet-nom-eco"]?></a>
48
					</li>
49
					<li title="<?=$i18n['onglet-descr-classif']?>" class="toc-item <?= ($onglet == 'nomenclature') ? 'is-active' : '' ;?>">
50
						<a class="toc-item-link" rel="nomenclature" href="<?=$url;?>nomenclature">
51
							<?=$i18n["onglet-nom-classif"]?></a>
52
					</li>
53
					<li title="<?=$i18n['onglet-descr-biblio']?>" class="toc-item <?= ($onglet == 'bibliographie') ? 'is-active' : '' ;?>">
54
						<a class="toc-item-link" rel="bibliographie" href="<?=$url;?>bibliographie">
55
							<?=$i18n["onglet-nom-biblio"]?></a>
56
					</li>
57
					<li title="<?=$i18n['onglet-descr-protect']?>" class="toc-item <?= ($onglet == 'statut') ? 'is-active' : '' ;?>">
58
						<a class="toc-item-link" rel="statut" href="<?=$url;?>statut">
59
							<?=$i18n["onglet-nom-protect"]?></a>
60
					</li>
61
				</ul>
1482 delphine 62
 
63
			</div>
1502 delphine 64
			<a class="button-top" href="#" title="Remonter en haut de la page" tabindex="-1">
65
				<svg class="icon icon-arrow-up" aria-hidden="true" role="img">
66
				Remonter
67
			</a>
68
		</aside>
1482 delphine 69
		<div class="layout-contenu">
70
			<div class="breadcrumbs">
71
				<ol class="breadcrumbs-items">
72
					<li class="breadcrumbs-item">
1510 killian 73
						<a href="eflore">
74
							Accueil
1482 delphine 75
						</a>
76
					</li>
77
					<li class="breadcrumbs-item">
1510 killian 78
						<a href="eflore?referentiel=<?=$referentiel;?>">
79
							<?=$referentiel;?>
1482 delphine 80
						</a>
81
					</li>
82
 
1510 killian 83
					<li class="component-text nomenclature breadcrumbs-item"><?=$nom_retenu_html?></li>
1482 delphine 84
 
1474 delphine 85
					<?php if($nom_appele_html): ?>
1482 delphine 86
						<li class="redirige_depuis breadcrumbs-item">
87
							Nom recherché : <?= $nom_appele_html ?></li>
1474 delphine 88
					<?php endif; ?>
1482 delphine 89
				</ol>
90
			</div>
91
 
1502 delphine 92
			<?= $entete; ?>
93
			<div id="bloc-fiche" class="importance4">
94
				<div id="zone_contenu_fiche" class="component component-text">
95
					<?= $contenu_onglet ?>
96
				</div>
97
			</div>
98
		</div>
545 gduche 99
	</div>
100
</div>