-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
78 lines (70 loc) · 2.95 KB
/
index.html
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
---
---
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/favicon.ico">
<title>Standards.REST</title>
<link href="/css/bootstrap.css" rel="stylesheet">
<link href="/css/site.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Arvo:700|Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<section class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading">Standards.REST</h1>
<p class="lead">A collection of standards and specifications, that help make fantastic HTTP/REST
APIs. Don't reinvent the wheel, use fantastic wheels, hashed out by experts,
that solve problems you hadn't even considered yet.</p>
<p>
<a href="https://github.com/apisyouwonthate/standards.rest" class="btn btn-primary">Contribute</a>
<a href="https://apisyouwonthate.com/" class="btn btn-secondary">Main Website</a>
</p>
</div>
</section>
<section class="content">
<div class="container">
<table class="table table-striped">
<thead class="thead-inverse">
<tr>
<th>Name</th>
<th>Reference</th>
<th>Body</th>
</tr>
</thead>
<tbody>
{% for standard in site.data.standards %}
<tr scope="row">
<th><a href="{{ standard.id }}">{{ standard.title }}</a></th>
<td>{% if standard.name %}{{ standard.name }}{% endif %}</td>
<td>{% if standard.wg %}<a href="{{ standard.wg.id }}">{{ standard.wg.short }}</a>{% endif %}</td>
</tr>
<tr>
<td colspan="4">{{ standard.abstract }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="alert alert-info text-center" role="alert">
<h4 class="alert-heading">Thank you!</h4>
<p style="margin-bottom:0">
Most of this content has come from the awesome community on our <a href="https://slack.apisyouwonthate.com/">Slack channel</a>,
and <a href="http://webconcepts.info/">webconcepts.info</a> (thanks <a href="https://twitter.com/dret">@dret</a>!), and <a href="https://labs.pedrofelix.org/http-api-specs/">HTTP API Specs</a> by <a href="https://github.com/pmhsfelix">Pedro Felix</a>.
</p>
</div>
</div>
</section>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
<p>Copyright {{ 'now' | date: "%Y" }} - <a href="https://apisyouwonthate.com/">APIs You Won't Hate</a></p>
</div>
</footer>
</body>
</html>