-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
81 lines (66 loc) · 3.03 KB
/
index.php
File metadata and controls
81 lines (66 loc) · 3.03 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
include_once("./template/init.php");
$page['title'] = "Steam WebAPI Proposal by Seg";
$page['desc'] = "A proposal for updating and expanding the Steam WebAPI. Authored by John 'Seg' Seggerson.";
include_once("./template/html_start.php");
?>
<div class="jumbotron">
<h1>Steam WebAPI Proposal</h1>
<p class="lead">A proposal from <a href="http://theseg.github.io/" target="_blank">John "Seg" Seggerson</a> for extending the <a href="https://developer.valvesoftware.com/wiki/Steam_Web_API" target="_blank">Steam WebAPI</a>.</p>
</div>
<br>
<div class="container">
<div class="row-fluid">
<div class="span5 offset1">
<h3><a href="./ISteamHub.php"><i class="icon-group"></i> Community Hubs</a></h3>
<p>
Hubs are collections of users around a game, specific interest, or external community.
Currently community API support is via deprecated XML support of groups. This document puts forth
a new interface and methods for Steam WebAPI access for hubs.
</p>
<p><a class="btn btn-large btn-inverse" href="./ISteamHub.php"><i class="icon-group"></i> ISteamHub</a></p>
</div>
<div class="span5 offset1">
<h3><a href="./ISteamApps.php"><i class="icon-gamepad"></i> Game & App Information</a></h3>
<p>Provides group metadata including name, URL, and other basic information about the group.</p>
<p><a class="btn btn-large btn-inverse" href="./ISteamApps.php"><i class="icon-gamepad"></i> ISteamApps</a></p>
</div>
</div>
<div id="" class="row-fluid">
<div class="span5 offset1">
<h3><i class="icon-comments"></i> Feedback</h3>
<p>This proposal is just the start! If you have any comments or feedback, leave an Issue on the GitHub project page.</p>
<p><a class="btn" href="https://github.com/TheSeg/Steam_Docs/issues"><i class="icon-github icon-large"></i> Feedback @ GitHub</a></p>
</div>
<div id="shareArea" class="span5 offset1">
<h3><i class="icon-share-alt"></i> Share</h3>
<div class="socialElement">
<a
href="https://twitter.com/share"
class="twitter-share-button"
data-via="TheSeg"
data-lang="en"
data-related="Steam_Games:The Ultimate Online Game Platform"
data-hashtags="SteamWebAPI"
data-text="A proposal to extend the @Steam_Games WebAPI."
>Tweet</a>
</div>
<div class="socialElement">
<div class="g-plusone" data-size="tall" data-annotation="inline" data-width="300" data-href="<?php print SteamDocs::full_url(); ?>"></div>
</div>
<div class="socialElement">
<div class="fb-like"
data-href="<?php print SteamDocs::full_url(); ?>"
data-send="true"
data-layout="button_count"
data-width="450"
data-show-faces="true"
data-font="lucida grande"
data-colorscheme="dark"
data-action="recommend">
</div>
</div>
</div>
</div>
</div>
<?php include_once("./template/html_end.php"); ?>