This repository was archived by the owner on Nov 1, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathwebhooks.html
More file actions
43 lines (36 loc) · 1.46 KB
/
webhooks.html
File metadata and controls
43 lines (36 loc) · 1.46 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
<%= renderp '/head.*' %>
<body class="api <%= ENV['DEV_MODE'] ? 'dev-mode' : '' %>">
<%= renderp '/header.*' %>
<div class="sub-nav">
<h2><a href="/v3/">API</a></h2>
<ul>
<li><a href="/v3/">Reference</a></li>
<li><a href="/webhooks/" class="active">Webhooks</a></li>
<li><a href="/guides/">Guides</a></li>
<li><a href="/libraries/">Libraries</a></li>
</ul>
</div>
<div id="wrapper">
<div class="content">
<%= yield %>
</div>
<div id="js-sidebar" class="sidebar-shell">
<div class="sidebar-module">
<ul>
<li><h3><a href="/webhooks">Overview</a></h3></li>
<li><h3><a href="/webhooks/creating">Creating webhooks</a></h3></li>
<li><h3><a href="/webhooks/configuring/">Configuring your server</a></h3></li>
<li><h3><a href="/webhooks/testing/">Testing webhooks</a></h3></li>
<li><h3><a href="/webhooks/securing">Securing your webhooks</a></h3></li>
</ul>
</div>
<div class="sidebar-module notice">
<p>This website is a <a href="https://github.com/github/developer.github.com" target="_blank">public GitHub repository</a>. Please help us by forking the project and adding to it.</p>
</div>
<div class="sidebar-module api-status"><a href="https://status.github.com" class="unknown">API Status</a></div>
</div><!-- sidebar-shell -->
</div><!-- #wrapper -->
</div><!-- #wrapper -->
<%= renderp '/footer.*' %>
</body>
</html>