updated HCL table layout

This commit is contained in:
Hakisho Nukama 2015-03-29 18:07:35 +00:00
parent 55dee8b89a
commit c0f3f8c3fd
No known key found for this signature in database
GPG Key ID: F942FF5D3C618D64

View File

@ -1,11 +1,22 @@
--- ---
layout: page layout: null
permalink: "/hcl/" permalink: "/hcl/"
title: "Hardware Compatibility List" title: "Hardware Compatibility List"
model: all model: all
--- ---
<!DOCTYPE html>
<html>
<table> {% include head.html %}
<body>
{% include header.html %}
<h2 align="center">{{ page.title }}</h2>
<table align="center">
<tr align='center'> <tr align='center'>
<th colspan=2 align='center'><b>Legend</b></th> <th colspan=2 align='center'><b>Legend</b></th>
</tr> </tr>
@ -92,11 +103,11 @@ model: all
</table> </table>
<br> <br>
<table align="center" style="table-layout:fixed;"> <table align="center" style="width: 95%">
<td colspan="10" align="center"><br><h2>Laptop devices</h2></td>
<tr> <tr>
<caption><h2>Laptop devices</h2></caption>
<th style="width=23%">Model</th> <th style="width=23%">Model</th>
<th style="width=32px">BIOS</th> <th style="width=42px">BIOS</th>
<th style="width=32px">HVM</th> <th style="width=32px">HVM</th>
<th style="width=32px">IOMMU</th> <th style="width=32px">IOMMU</th>
<th style="width=32px">TPM</th> <th style="width=32px">TPM</th>
@ -109,13 +120,11 @@ model: all
{% for device in site.hcl %}{% if device.type == 'laptop' %} {% for device in site.hcl %}{% if device.type == 'laptop' %}
{% include hcl-device.html %} {% include hcl-device.html %}
{% endif %}{% endfor %} {% endif %}{% endfor %}
</table>
<table align="center" style="table-layout:fixed;"> <td colspan="10" align="center"><br><h2>Desktop, Workstation and Server</h2></td>
<tr> <tr>
<caption><h2>Desktop, Workstation and Server</h2></caption>
<th style="width=23%">Model</th> <th style="width=23%">Model</th>
<th style="width=32px">BIOS</th> <th style="width=42px">BIOS</th>
<th style="width=32px">HVM</th> <th style="width=32px">HVM</th>
<th style="width=32px">IOMMU</th> <th style="width=32px">IOMMU</th>
<th style="width=32px">TPM</th> <th style="width=32px">TPM</th>
@ -128,13 +137,11 @@ model: all
{% for device in site.hcl %}{% if device.type == 'desktop' or device.type == 'workstation' or device.type == 'server' %} {% for device in site.hcl %}{% if device.type == 'desktop' or device.type == 'workstation' or device.type == 'server' %}
{% include hcl-device.html %} {% include hcl-device.html %}
{% endif %}{% endfor %} {% endif %}{% endfor %}
</table>
<table align="center" style="table-layout:fixed;"> <td colspan="10" align="center"><br><h2>Motherboards</h2></td>
<tr> <tr>
<caption><h2>Motherboards</h2></caption>
<th style="width=23%">Model</th> <th style="width=23%">Model</th>
<th style="width=32px">BIOS</th> <th style="width=42px">BIOS</th>
<th style="width=32px">HVM</th> <th style="width=32px">HVM</th>
<th style="width=32px">IOMMU</th> <th style="width=32px">IOMMU</th>
<th style="width=32px">TPM</th> <th style="width=32px">TPM</th>
@ -148,3 +155,9 @@ model: all
{% include hcl-device.html %} {% include hcl-device.html %}
{% endif %}{% endfor %} {% endif %}{% endfor %}
</table> </table>
{% include footer.html %}
</body>
</html>