Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
1135 aurelien 1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<html>
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
<style type="text/css">
6
<!--
7
body {
8
	font-family: Arial,Helvetica,Verdana,sans-serif;
9
	font-size: 14px;
10
}
11
 
12
h1 > a {
13
  color:#fd8c13;
14
}
15
 
16
h3 {
17
	font-size:14px;
18
	color:#454341 !important;
19
	margin:0px;
20
}
21
 
22
h3 > a {
23
  color:#454341;
24
}
25
 
26
h1 a, h3 a, h4 a {
27
	color: inherit;
28
	border-bottom: dotted 1px;
29
}
30
h3 a {
31
	border-color:#CCCCCC;
32
}
33
a {
34
	cursor: pointer;
35
	color:#598000;
36
	text-decoration:none;
37
	border-bottom:1px dotted #95ae5d;
38
}
39
a:hover {
40
	color:#FD8C13;
41
	border-bottom:1px dotted #95ae5d;
42
}
43
.lire-suite {
44
	padding-left:10px;
45
	background:url(http://www.tela-botanica.org/sites/commun/generique/images/graphisme/petit_carre.png) no-repeat 0px 4px;
46
}
47
 
48
#titre {
49
    background: none repeat scroll 0 0 #9AC343;
50
    opacity: 0.9;
51
    position: relative;
52
    text-align: center;
53
    width: 100%;
54
}
55
 
56
#titre h1 {
57
    background: url("http://www.tela-botanica.org/eflore-test/del/img/identiplante_mini.png") no-repeat scroll 150px 7px transparent;
58
    color: #777777;
59
    font-size: 2em;
60
    font-weight: bold;
61
    margin: 0 0 0;
62
    padding: 18px 60px;
63
    text-align: center;
64
    width: 100%;
65
}
66
 
67
.description_message {
68
    color: #333333;
69
    font-size: 1.1em;
70
    font-style: italic;
71
    padding-top: 10px;
72
}
73
-->
74
</style>
75
</head>
76
<body>
77
<div id="titre">
78
	<h1>IdentiPlante - Récapitulatif des observations à déterminer </h1>
79
</div>
80
<div class="description_message">
81
	Ce message récapitule l'ensemble des observations dont l'auteur a demandé confirmation ou détermination via
82
	l'outil <a href="http://www.tela-botanica.org/appli:del" >Identiplante</a>
83
	<br /><br />
84
</div>
85
 
86
<?php foreach($liste_observations as $observation) : ?>
87
	<?php $nom_ret = (trim($observation['nom_propose']) != '') ? $observation['nom_propose'] : 'Espèce indéterminée'; ?>
88
	<h3><a href="<?= $observation['lien']; ?>">Observation <?= $observation['id_observation'] ?> - <em><?= $nom_ret; ?></em> </a>
89
		observée le <?= $observation['date']; ?> à <?= $observation['zone_geo']; ?></h3>
90
	<br />
91
<?php endforeach ; ?>
92
</body>
93
</html>