diff --git a/hcl.html b/hcl.html
index e59ee382..5f49ea87 100644
--- a/hcl.html
+++ b/hcl.html
@@ -5,8 +5,10 @@ title: "Hardware Compatibility List"
model: all
---
-
-
+
+
+ Laptop devices |
+
Model |
BIOS |
HVM |
@@ -18,9 +20,47 @@ model: all
Remark |
Credit |
-{% for device in site.hcl %}
+
+{% for device in site.hcl %}{% if device.type == 'laptop' %}
{% include hcl-device.html %}
-{% endfor %}
+{% endif %}{% endfor %}
+
+
+ Desktop, Workstation and Server |
+
+ Model |
+ BIOS |
+ HVM |
+ IOMMU |
+ TPM |
+ Qubes |
+ Xen |
+ Kernel |
+ Remark |
+ Credit |
+
+
+{% for device in site.hcl %}{% if device.type == 'desktop' or device.type == 'workstation' or device.type == 'server' %}
+ {% include hcl-device.html %}
+{% endif %}{% endfor %}
+
+
+ Motherboard |
+
+ Model |
+ BIOS |
+ HVM |
+ IOMMU |
+ TPM |
+ Qubes |
+ Xen |
+ Kernel |
+ Remark |
+ Credit |
+
+
+{% for device in site.hcl %}{% if device.type == 'motherboard' %}
+ {% include hcl-device.html %}
+{% endif %}{% endfor %}
+
-
-