Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 671 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
648 mathilde 1
<!-- BIBLIOGRAPHIE -->
671 mathilde 2
<div class="bloc <? if ($premier == 'bibliographie') : echo 'allow-break'; else : echo 'no-break'; endif; ?>">
648 mathilde 3
	<div class="categorie">Bibliographie</div>
4
 
5
	<!-- FLORE -->
6
	<? if(!empty($bibliographie['flores']['liste_flores'])) : ?>
7
	<div class ="no-break">
8
		<h2 > Flores </h2>
1130 aurelien 9
		<span class='citation'><?= $bibliographie['flores']['meta']['citation']?></span>
648 mathilde 10
		<ul class="liste_biblio_flores allow-break">
11
			<?php foreach($bibliographie['flores']['liste_flores'] as $flore) : ?>
12
			<li class="item_biblio_flore"><span class="nom"> <?= $flore ?></span></li>
13
			<?php endforeach; ?>
14
		</ul>
15
	</div>
16
	<? endif; ?>
17
 
18
	<!-- REFERENCES BIBLIOGRAPĤIQUES-->
19
	<? if(!empty($bibliographie['bibliobota']['references'] )) : ?>
20
	<div class ="no-break allow-break">
21
		<h2> Références bibliographiques </h2>
22
		<ul class="references_bibliographiques">
23
		<?php foreach($bibliographie['bibliobota']['references'] as $reference) : ?>
24
			<li class="item_biblio_flore"><span class="nom"><?=$reference['reference_html']?></span></li>
25
		<?php endforeach; ?>
26
		</ul>
27
	</div>
28
	<? endif; ?>
29
 
30
 
31
	<!-- WIKI-->
32
	<? if (!empty($bibliographie['wikini']['biblio'])): ?>
33
	<h2> Bibliographie collaborative : </h2>
34
	<span> Rédaction collaborative de cette bibliograpĥie. </span>
669 mathilde 35
		<div class="wiki allow-break" title="biblio">
648 mathilde 36
			<?=$bibliograhie['wikini']['biblio']?>
37
		</div>
38
	<? endif; ?>
39
 
40
	<!-- VIDE DE DONNEES -->
41
	<?php if ( empty($bibliographie['flores']['liste_flores'])
42
	&& empty($bibliographie['bibliobota']['references'] )
43
	&& empty($bibliographie['wikini']['biblio'])) : ?>
44
	Aucune donnée.
45
	<?php endif; ?>
46
 
47
</div>
48
<br/>
49
<br/>