forked from LondonStageDB/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.php
30 lines (27 loc) · 947 Bytes
/
data.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html class="no-js" lang="en">
<head>
<?php include_once('common/header.php'); ?>
<title>Data for London Stage Database Project</title>
</head>
<body id="data">
<?php include_once('common/nav.php'); ?>
<div id="main" class="main grid-container">
<div class="grid-x data-wrap">
<div class="small-12 page-heading">
<h1>Data Downloads</h1>
</div>
<div class="small-12 data-content">
<h2>Export the full dataset for exploration and analysis</h2>
<ul class="no-bullet">
<li><a href="/downloads/LondonStageSQL.zip">SQL</a></li>
<li><a href="/downloads/LondonStageJSON.zip">JSON</a></li>
<li><a href="/downloads/LondonStageXML.zip">XML</a></li>
<li><a href="/downloads/LondonStageCSV.zip">CSV</a></li>
</ul>
</div>
</div>
</div>
<?php include_once('common/footer.php'); ?>
</body>
</html>