34 lines
481 B
HTML
34 lines
481 B
HTML
#CACHE{0}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Liste des évènements</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
td {
|
|
padding: 4px;
|
|
}
|
|
table, td{
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #999;
|
|
border-collapse: collapse;
|
|
}
|
|
td, tr {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #999;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
[(#ENV{annee}|lef_liste_evenements)]
|
|
</table>
|
|
</body>
|
|
</html>
|