source: gs2-extensions/afrepo/trunk/src/src/html/download.php@ 28352

Last change on this file since 28352 was 28352, checked in by davidb, 11 years ago

Restructured to have 'about' and 'download' pages

File size: 2.5 KB
Line 
1<?php
2 require_once "setup.php";
3 $base = parse_url($repo->getURIPrefix());
4 $basepath = $base["path"];
5?>
6<!DOCTYPE HTML>
7<html>
8 <head>
9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
11 <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Pacifico">
12
13 <link rel="stylesheet" href="css/core-style.css" type="text/css" media="screen" />
14
15
16 <title>SALAMI SPARQL Endpoint</title>
17
18<!--
19 <script src="js/jquery-1.10.1.js" > </script>
20-->
21
22 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
23
24 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
25 <script type="text/javascript" id="sgvzlr_script" src="http://sgvizler.googlecode.com/svn/release/0.5/sgvizler.js"></script>
26
27
28
29 <script type="text/javascript">
30
31 sgvizler.option.namespace.mo ='http://purl.org/ontology/mo/';
32 sgvizler.option.namespace.salami = 'http://nema.lis.illinois.edu/salamiEndpoint/';
33
34
35 $(document).ready(sgvizler.go());
36
37
38 </script>
39
40 </head>
41
42 <body>
43 <div id="container">
44
45 <div id="header">
46 <h1>The Salami SPARQL Endpoint</h1>
47 </div>
48
49 <div id="navigation">
50 <ul>
51 <li><a href="index.php">Home</a></li>
52 <li><a href="sparql.php">SPARQL</a></li>
53 <li><a href="examples.php">Examples</a></li>
54 <li class="selected"><a href="#">Download</a></li>
55 <li><a href="about.php">About</a></li>
56 </ul>
57 </div>
58
59 <div id="content-container">
60
61 <div id="content">
62
63 <h2>Datasets by Algorithm</h2>
64
65 <?php echo $repo->attributionToHtmlByAlgorithm(); ?>
66
67
68 <h2>Datasets by Collection</h2>
69
70 <?php echo $repo->attributionToHtmlByCollection(); ?>
71
72
73<!--
74 action="<?php echo htmlspecialchars($repo->getSparqlEndpoint()); ?>" method="post"
75-->
76 </div>
77 </div>
78
79
80 <div id="footer" style="border-top: 8px groove #7ECDF3;">
81 <table cellpadding="0px" cellspacing="0px" width="100%">
82 <tbody>
83 <tr style="background: white;">
84 <td align="center">
85 <a href="http://www.sshrc-crsh.gc.ca/Default.aspx">
86 <img width="400px" src="images/sshrc_logo.jpeg">
87 </a>
88 </td>
89 <td align="center">
90 <a href="http://www.nsf.gov/index.jsp">
91 <img width="100px" src="images/nsf_logo.jpeg">
92 </a>
93 </td>
94 <td align="center">
95 <a href="http://www.jisc.ac.uk/">
96 <img height="100px" src="images//jisc_logo.jpeg">
97 </a>
98 </td>
99 </tr>
100 </tbody>
101 </table>
102
103 </div>
104
105 </div>
106 </body>
107</html>
Note: See TracBrowser for help on using the repository browser.