-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISteamApps.php
40 lines (33 loc) · 1.2 KB
/
ISteamApps.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
40
<?php
include_once("./template/init.php");
$page['title'] = "Steam WebAPI Proposal · ISteamApps";
$page['desc'] = "ISteamApps, a proposal WebAPI interface for Steam App Information. Authored by John 'Seg' Seggerson.";
include_once("./template/html_start.php");
?>
<header class="jumbotron subhead" id="overview">
<div class="container">
<h1><i class="icon-gamepad"></i> ISteamApps</h1>
<p class="lead">A Steam WebAPI interface for Steam App Information.</p>
</div>
</header>
<div class="container">
<!-- Docs Nav -->
<section id="navigation">
<div class="subnav">
<ul class="nav nav-pills">
<li><a href="#top"><i class="icon-collapse-top"></i></a></li>
<li><a href="#General">General Notes</a></li>
<li><a href="#GetAppData">::GetAppData</a></li>
<li><a href="#GetAppMedia">::GetAppMedia</a></li>
<li><a href="#GetAppRatings">::GetAppRatings</a></li>
</ul>
</div>
</section>
<?php
include("./docs/ISteamApps/General.php");
include("./docs/ISteamApps/GetAppData.php");
include("./docs/ISteamApps/GetAppMedia.php");
include("./docs/ISteamApps/GetAppRatings.php");
?>
</div>
<?php include_once("./template/html_end.php"); ?>