Make components visible for people without JavaScript

This commit is contained in:
Paulus Schoutsen 2017-06-23 09:13:36 -07:00
parent 6bc3041fe2
commit 09bea10736
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,6 @@
--- ---
layout: page layout: page
title: "eQ-3 MAX! Cube binary sensors" title: "eQ-3 MAX! Cube thermostat"
description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube." description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube."
date: 2017-02-04 22:00 date: 2017-02-04 22:00
sidebar: true sidebar: true

View File

@ -257,3 +257,13 @@ allComponents.pop(); // remove placeholder element at the end
applyFilter(); applyFilter();
})(); })();
</script> </script>
<noscript>
<ul>
{% for component in components %}
{% if component.ha_category %}
<li><a href='{{ component.url }}'>{{ component.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</noscript>