forked from jasonhoekstra/slc-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·39 lines (34 loc) · 1023 Bytes
/
index.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
31
32
33
34
35
36
37
38
39
<?
require_once 'slcapiwrapper.php';
$api = new slcAPIWrapper();
?>
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>SLC API Explorer</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id='container'>
<header>
<h1>SLC API Explorer</h1>
</header>
<article>
<div id="explorer"></div>
</article>
<footer>
<p>By <a href='http://www.sunilkchopra.com'>Sunil K Chopra</a>. Sponsored by <a href='http://www.misdepartment.com'>The MIS Department, Inc.</a> Forked from <a href='http://github.com/jasonhoekstra'>Jason Hoekstra</a>.</p>
<div class='readme'>
<h3>README.md</h3>
<div class='content'>
<?php
echo nl2br(file_get_contents("README.md"));
?>
</div>
</div>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>