41 lines
813 B
HTML
41 lines
813 B
HTML
#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>
|