Skip to content

Commit

Permalink
#101 - Make downloads support table readable
Browse files Browse the repository at this point in the history
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Oct 4, 2020
1 parent 34dc897 commit 81760fd
Showing 1 changed file with 76 additions and 21 deletions.
97 changes: 76 additions & 21 deletions pmaweb/templates/downloads.html
Expand Up @@ -123,27 +123,82 @@ <h2 id="support">Supported versions</h2>
</p>

<table class="table table-condensed table-striped">
<thead>
<tr>
<th>Version</th>
<th>End of regular<br />support</th>
<th>End of extended<br />security support (LTS)</th>
<th>Note</th>
</tr>
</thead>
<tbody>
<tr><td>5.0</td><td>TBD</td><td></td><td>&nbsp;</td></tr>
<tr><td>4.9</td><td>December 31, 2019</td><td>TBD</td><td>LTS to support PHP 5.5-7.0</td></tr>
<tr><td>4.8</td><td>June 4, 2019</td><td></td><td></td></tr>
<tr><td>4.7</td><td>April 7, 2018</td><td></td><td></td></tr>
<tr><td>4.6</td><td>April 1, 2017</td><td></td><td></td></tr>
<tr><td>4.5</td><td>April 1, 2016</td><td></td><td></td></tr>
<tr><td>4.4</td><td>October 1, 2016</td><td></td><td></td></tr>
<tr><td>4.3</td><td>October 1, 2015</td><td></td><td></td></tr>
<tr><td>4.2</td><td>July 1, 2015</td><td></td><td></td></tr>
<tr><td>4.1</td><td>January 1, 2015</td><td></td><td></td></tr>
<tr><td>4.0</td><td>December 31, 2013</td><td>April 1, 2017</td><td>LTS to support PHP 5.2-5.4.</td></tr>
</tbody>
<thead>
<tr>
<th>Version</th>
<th>End of regular<br />support</th>
<th>End of extended<br />security support (LTS)</th>
<th>Note</th>
</tr>
</thead>
<tbody>
<tr>
<td>5.0</td>
<td>TBD</td>
<td></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>4.9</td>
<td>December 31, 2019</td>
<td>TBD</td>
<td>LTS to support PHP 5.5-7.0</td>
</tr>
<tr>
<td>4.8</td>
<td>June 4, 2019</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.7</td>
<td>April 7, 2018</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.6</td>
<td>April 1, 2017</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.5</td>
<td>April 1, 2016</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.4</td>
<td>October 1, 2016</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.3</td>
<td>October 1, 2015</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.2</td>
<td>July 1, 2015</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.1</td>
<td>January 1, 2015</td>
<td></td>
<td></td>
</tr>
<tr>
<td>4.0</td>
<td>December 31, 2013</td>
<td>April 1, 2017</td>
<td>LTS to support PHP 5.2-5.4.</td>
</tr>
</tbody>
</table>

{% endblock %}

0 comments on commit 81760fd

Please sign in to comment.