forked from phpversions/phpversions.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinux-distros.html
30 lines (29 loc) · 867 Bytes
/
linux-distros.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
---
layout: default
---
<article class="hosts">
<section>
<div class="host-description">
<h2>Linux Distros</h2>
<p>Linux distributions take the Linux kernel combining it with other free software to create complete packages. Picking the one with the PHP version you need will save you time and headache.</p>
<hr>
</div>
<table class="tables" data-sortable>
<thead>
<tr>
<th>Distribution</th>
<th>Default</th>
</tr>
</thead>
<tbody>
{% assign linux_distros = (site.data.linux_distros | semver_sort_by: 'default') %}
{% for distro in linux_distros reversed %}
<tr>
<td class="host-name">{{ distro.name }}</td>
<td class="host-info">{{ distro.default }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</article>