Tableau de la liste des evenements pour usage interne

This commit is contained in:
Vincent Calame 2018-02-15 22:04:00 +01:00 committed by root
parent 45fe3e8894
commit b9b7f416df
1 changed files with 40 additions and 0 deletions

40
liste-evenements.html Normal file
View File

@ -0,0 +1,40 @@
#CACHE{0}
<!DOCTYPE html>
<html>
<head>
<title>Liste des évènements</title>
<meta http-equiv="Content-Type" content="text/html; charset=#CHARSET" />
<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>
<BOUCLE_evenements(DATA) {source json, "https://www.agendadulibre.org/events.json?region=&tag=libre-en-fete-2018"}{par id}{inverse}>
<tr>
<td><a href="http://www.agendadulibre.org/events/[(#VALEUR{id})]">#VALEUR{id}</a></td>
<td>[(#VALEUR{start_time}|affdate_jourcourt)]</td>
<td>#VALEUR{title}</td>
<td>#VALEUR{city}</td>
</tr>
</BOUCLE_evenements>
</table>
</body>
</html>