forked from apisyouwonthate/openapi.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (99 loc) · 4.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
---
<!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="https://v4-alpha.getbootstrap.com/favicon.ico">
<title>OpenAPI.Tools</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'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
<header class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading">OpenAPI.Tools</h1>
<p class="lead">
We want to keep API developers up to date with the best OpenAPI tooling around, with the goal of
<a href="https://blog.runscope.com/posts/tutorial-upgrading-swagger-2-api-definition-to-openapi-3">upgrading to OpenAPI v3</a>
as soon as possible. Tooling stuck on v2? You might need to send a pull request!
</p>
<a href="https://github.com/apisyouwonthate/openapi.tools" class="btn btn-primary">Contribute</a>
<a href="https://apisyouwonthate.com/" class="btn btn-secondary">Main Website</a>
</p>
</div>
</header>
<section class="content">
<div class="container">
<div>
<h2 class="font-sans font-light pt-2 pb-2">Contribute</h2>
<p class="font-serif">This project was created by Matthew Trask and Phil Sturgeon with <a href="https://github.com/apisyouwonthate/openapi.tools/graphs/contributors">contributions</a> from the community. If you need help, hit <a href="https://twitter.com/matthewtrask">Matt</a> or <a href="https://twitter.com/philsturgeon">Phil</a> up on twitter.</p>
</div>
<div>
<h2 class="font-sans font-light pt-2 pb-2">Current OpenAPI Version</h2>
<blockquote class="blockquote">
<p class="lead font-serif">3.0.2 - <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md">Link to the specification</a></p>
</blockquote>
</div>
{% for category in site.data.categories %}
<div id="{{ category.slug }}">
<h2>{{ category.name }}</h2>
<p class="lead">{{ category.description }}</p>
<table class="table table-striped">
<thead class="thead-inverse">
<tr>
<th>Name</th>
<th>Language</th>
<th>v2</th>
<th>v3</th>
<th>GitHub</th>
</tr>
</thead>
<tbody>
{% for tool in site.data.tools %}
{% if tool.category == category.slug or tool.category contains category.slug %}
<tr class="table-row">
<td class="font-serif w-3/5">
<a href="{% if tool.link %}{{ tool.link }}{% else %}{{ tool.github }}{% endif %}">
{{ tool.name }}
</a>
{% if tool.description %}
- {{ tool.description }}
{% endif %}
</td>
<td class="font-serif w-1/5 text-center">{{ tool.language }}</td>
<td class="font-serif w-1/3 text-center">{% if tool.v2 %}✅{% else %}❌{% endif %}</td>
<td class="font-serif w-1/3 text-center">{% if tool.v3 %}✅{% elsif tool.v3_progress_link %}<a href="{{ tool.v3_progress_link }}">👷</a>{% else %}❌{% endif %}</td>
<td class="w-2/3 text-center">{% if tool.github %}<a href="{{ tool.github }}"><img src="/img/octocat.png"></a>{% else %}{% endif %}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>
{% endfor %}
</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>
<!--
<ul class="list-reset flex text-center justify-center">
{% for category in site.data.categories %}
<li class="mr-6">
<a class="text-blue hover:text-blue-darker" href="#{{ category.slug }}">{{ category.name }}</a>
</li>
{% endfor %}
</ul> -->