Files
home-assistant.io/source/_includes/asides/categories.html
c0ffeeca7 b87af8f6f8 Add icons for three dots menu and cogwheel (#33557)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-07-04 10:32:22 +02:00

13 lines
514 B
HTML

<section class="aside-module grid__item one-whole lap-one-half">
<h1 class="title epsilon">{% icon "mdi:category" %} Categories</h1>
<ul class="divided">
{% assign categories = site.categories | sort %}
{% for category in categories %}
{% assign category_name = category | first | downcase %}
{% if category_name != "core"%}
<li><a href="/blog/categories/{{ category_name }}/">{{ category | first | replace: '-', ' '}}</a></li>
{% endif %}
{% endfor %}
</ul>
</section>