This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
paas-hosting.html
48 lines (47 loc) · 2.35 KB
/
paas-hosting.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
---
layout: default
---
<article class="hosts">
<section>
<div class="host-description">
<h2>PaaS Hosting</h2>
<p>These hosts are a little different. Often you're just pushing some code up and they handle the rest for you, but knowing which version they have and being able to chose is important.</p>
<hr>
</div>
<table class="tables tables__scrollbar paas sortable-data" data-sortable>
<thead>
<tr>
<th>Host</th>
<th>Last Scanned</th>
<th>8.1</th>
<th>8.0</th>
<th>7.4</th>
<th colspan="7">End Of Life</th>
<th>Default</th>
</tr>
</thead>
<tbody>
{% assign hosts = (site.data.hosts | filter_by_type: 'paas' | semver_sort) %}
{% for host in hosts %}
<tr>
<td class="host-name" data-value="{{ host.name | downcase }}"><a href="{{ host.url }}">{{ host.name }}</a></td>
<td class="host-info" data-last-scanned="{{ host.last_scanned_at }}">
<i class="fa fa-times"></i>
</td>
<td class="host-info version">{{ host.versions[81] | format_version }}</td>
<td class="host-info version">{{ host.versions[80] | format_version }}</td>
<td class="host-info version">{{ host.versions[74] | format_version }}</td>
<td class="host-info version">{{ host.versions[73] | format_version }}</td>
<td class="host-info version">{{ host.versions[72] | format_version }}</td>
<td class="host-info version">{{ host.versions[71] | format_version }}</td>
<td class="host-info version">{{ host.versions[70] | format_version }}</td>
<td class="host-info version">{{ host.versions[56] | format_version }}</td>
<td class="host-info version">{{ host.versions[55] | format_version }}</td>
<td class="host-info version">{{ host.versions[54] | format_version }}</td>
<td class="host-info version">{% if host.default %}{{ host.versions[host.default] | format_version }}{% else %}<em>???</em>{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</article>