mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-27 04:26:49 +00:00
32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<div class="grid">
|
|
{% assign url_parts = page.url | split: '/' %}
|
|
{% if url_parts[1] == 'integrations' %}
|
|
{% include asides/component_navigation.html %}
|
|
{% elsif url_parts[1] == 'cookbook' %}
|
|
{% include asides/cookbook_navigation.html %}
|
|
{% elsif url_parts[1] == 'lovelace' %}
|
|
{% include asides/lovelace_navigation.html %}
|
|
{% elsif url_parts[1] == 'developers' or url_parts[1] == 'help' %}
|
|
{% include asides/help_navigation.html %}
|
|
{% elsif url_parts[1] == 'getting-started' %}
|
|
{% include asides/getting_started_navigation.html %}
|
|
{% elsif url_parts[1] == 'docs' %}
|
|
{% include asides/docs_navigation.html %}
|
|
{% elsif url_parts[1] == 'faq' %}
|
|
{% include asides/faq_navigation.html %}
|
|
{% elsif url_parts[1] == 'hassio' or url_parts[1] == 'addons' %}
|
|
{% include asides/hassio_navigation.html %}
|
|
{% elsif url_parts[1] == 'cloud' %}
|
|
{% include asides/cloud_navigation.html %}
|
|
{% else %}
|
|
{% include asides/about.html %}
|
|
|
|
{% if page.blog_index %}
|
|
{% include asides/categories.html %}
|
|
{% else %}
|
|
{% include post/sharing.html %}
|
|
{% include asides/recent_posts.html %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|