tabellarchivi/index.html

55 lines
1.3 KiB
HTML
Raw Normal View History

2014-06-26 01:47:00 +02:00
<!DOCTYPE html>
<html lang="it">
<head>
2014-06-27 11:02:32 +02:00
<title>Archivi e biblioteche ReBal</title>
2014-06-26 01:47:00 +02:00
<meta charset="UTF-8">
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="jquery.dynatable.css">
<script src="jquery-1.7.2.min.js"></script>
<script src="jquery.dynatable.js"></script>
<script>
$(document).ready( function() {
$.ajax({
'url': 'archivi.json',
'dataType': "json",
'success': function (data) {
$('#tabella-archivi').dynatable({
dataset: {
records: data
}
});
}
});
2014-06-26 01:47:00 +02:00
});
</script>
</head>
<body>
<div class="container-fluid">
2014-06-27 10:49:00 +02:00
<div class="row">
<div class="col-md-offset-2 col-md-9">
2014-06-27 11:02:32 +02:00
<h1>Archivi e biblioteche ReBal<br>
<small><a href="http://www.rebal.info/vufind/">Rete</a> biblioteche e archivi anarchici e libertari</small> </h1>
2014-06-27 10:49:00 +02:00
</div>
2014-06-27 11:05:58 +02:00
</div>
<div class="row">
<div class="col-md-offset-1 col-md-9">
<h2>Legenda</h2>
</div>
2014-06-27 10:49:00 +02:00
</div>
2014-06-26 01:47:00 +02:00
<div class="row">
<div class="col-md-offset-1 col-md-9">
<table class="table table-striped" id="tabella-archivi">
<thead>
<th>stato</th>
<th>nome</th>
<th>adesione</th>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>