mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-03 16:56:50 +00:00

* Update picture-elements.markdown * Update glance.markdown * Update iframe.markdown * Update picture-entity.markdown * Update picture-glance.markdown * Update plant-status.markdown * Update lovelace_navigation.html * Update lovelace_navigation.html * Update picture.markdown * Create views.markdown * Add files via upload * Update views.markdown
26 lines
707 B
HTML
26 lines
707 B
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'>
|
|
<li><a href='/lovelace/'>Introduction</a></li>
|
|
<li><a href='/lovelace/changelog/'>Changelog</a></li>
|
|
<li><a href='/lovelace/views/'>Views</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class='section'>
|
|
<h1 class="title delta">Cards</h1>
|
|
<ul class='divided'>
|
|
{% for card in cards %}
|
|
<li>
|
|
<a href='{{card.url}}'>{{ card.sidebar_label }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
</section>
|