mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-28 13:57:04 +00:00

This removes the "[How It Works](https://www.home-assistant.io/lovelace/how-it-works/)" link from the Lovelace sidebar navigation. The actual page will still exist, this simply demotes it from the sidebar nav for now. Reasoning is, the "How it Works" page is obsolete and will only cause confusion and frustration. New users click on "How it works" expecting to see a user guide for Lovelace, but instead they get some nerdy tech document comparing it to the older "States" UI which no longer even exists. I would like to eventually rewrite the page to be more user-focused and then re-add it to sidebar.
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<section class="aside-module grid__item one-whole lap-one-half">
|
|
<!-- {% include edit_github.html %} -->
|
|
{% assign cards = site.lovelace | sort_natural: 'title' %}
|
|
|
|
<div class="section">
|
|
<h1 class="title delta">Lovelace UI</h1>
|
|
<ul class="divided sidebar-menu">
|
|
<li>{% active_link /lovelace/ Introduction %}</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h1 class="title delta">Advanced</h1>
|
|
<ul class="divided sidebar-menu">
|
|
<li>{% active_link /lovelace/header-footer/ Headers & Footers %}</li>
|
|
<li>
|
|
{% active_link /lovelace/dashboards-and-views/ Dashboards & Views %}
|
|
</li>
|
|
<li>{% active_link /lovelace/badges/ Badges %}</li>
|
|
<li>{% active_link /lovelace/actions/ Actions %}</li>
|
|
<li>
|
|
<a href="https://developers.home-assistant.io/docs/frontend/custom-ui/lovelace-custom-card.html">Developing Custom Cards
|
|
<i class="icon-external-link"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h1 class="title delta">Cards</h1>
|
|
<ul class="divided sidebar-menu">
|
|
{% for card in cards %}
|
|
<li>{% active_link {{card.url}} {{card.sidebar_label}} %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</section>
|