mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 09:17:06 +00:00
Semantic Accessibility and SEO Improvements: Correct List Parent Tags and Heading Levels (#35339)
This commit is contained in:
parent
f57054241d
commit
f952248870
@ -366,7 +366,7 @@ header .breadcrumbs {
|
|||||||
margin: 0 -24px;
|
margin: 0 -24px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
h4 {
|
h3 {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
letter-spacing: 0.005em;
|
letter-spacing: 0.005em;
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid__item one-quarter lap-one-half palm-one-whole">
|
<div class="grid__item one-quarter lap-one-half palm-one-whole">
|
||||||
<h4>Join us and contribute!</h4>
|
<h3>Join us and contribute!</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a class="external-link" href="https://github.com/home-assistant/">GitHub repo {% icon "tabler:external-link" %}</a></li>
|
<li><a class="external-link" href="https://github.com/home-assistant/">GitHub repo {% icon "tabler:external-link" %}</a></li>
|
||||||
<li><a class="external-link" href="https://developers.home-assistant.io">Developers Portal {% icon "tabler:external-link" %}</a></li>
|
<li><a class="external-link" href="https://developers.home-assistant.io">Developers Portal {% icon "tabler:external-link" %}</a></li>
|
||||||
@ -32,7 +32,7 @@
|
|||||||
<li><a href="/help/reporting_issues/">Reporting issues</a></li>
|
<li><a href="/help/reporting_issues/">Reporting issues</a></li>
|
||||||
<li><a href="https://home-assistant-store.creator-spring.com/">Community Merch Store</a></li>
|
<li><a href="https://home-assistant-store.creator-spring.com/">Community Merch Store</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h4>System status</h4>
|
<h3>System status</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a class="external-link" href="https://alerts.home-assistant.io">Integration Alerts {% icon "tabler:external-link" %}</a>
|
<a class="external-link" href="https://alerts.home-assistant.io">Integration Alerts {% icon "tabler:external-link" %}</a>
|
||||||
@ -45,13 +45,13 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid__item one-quarter lap-one-half palm-one-whole">
|
<div class="grid__item one-quarter lap-one-half palm-one-whole">
|
||||||
<h4>Companion apps</h4>
|
<h3>Companion apps</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a class="external-link" href="https://apps.apple.com/us/app/home-assistant/id1099568401">iOS and Apple devices</a></li>
|
<li><a class="external-link" href="https://apps.apple.com/us/app/home-assistant/id1099568401">iOS and Apple devices</a></li>
|
||||||
<li><a class="external-link" href="https://play.google.com/store/apps/details?id=io.homeassistant.companion.android">Android and Wear OS</a></li>
|
<li><a class="external-link" href="https://play.google.com/store/apps/details?id=io.homeassistant.companion.android">Android and Wear OS</a></li>
|
||||||
<li><a class="external-link" href="https://companion.home-assistant.io/">...and more!</a></li>
|
<li><a class="external-link" href="https://companion.home-assistant.io/">...and more!</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h4>Governance</h4>
|
<h3>Governance</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/privacy/">Privacy Notices</a></li>
|
<li><a href="/privacy/">Privacy Notices</a></li>
|
||||||
<li><a href="/developers/cla/">Contributor License Agreement</a></li>
|
<li><a href="/developers/cla/">Contributor License Agreement</a></li>
|
||||||
@ -64,7 +64,7 @@
|
|||||||
|
|
||||||
<div class="socials grid__item one-quarter lap-one-half palm-one-whole">
|
<div class="socials grid__item one-quarter lap-one-half palm-one-whole">
|
||||||
|
|
||||||
<h4>Follow us</h4>
|
<h3>Follow us</h3>
|
||||||
<p><a class="external-link" href='https://building.open-home.io/#/portal'>Sign up for our newsletter {% icon "tabler:external-link" %}</a></p>
|
<p><a class="external-link" href='https://building.open-home.io/#/portal'>Sign up for our newsletter {% icon "tabler:external-link" %}</a></p>
|
||||||
<div class="icons">
|
<div class="icons">
|
||||||
<a
|
<a
|
||||||
|
@ -17,12 +17,14 @@ feedback: false
|
|||||||
<div class="recent-posts material-card text">
|
<div class="recent-posts material-card text">
|
||||||
<h1>{% icon "mdi:newspaper-variant-multiple" %} Recent Blog Posts</h1>
|
<h1>{% icon "mdi:newspaper-variant-multiple" %} Recent Blog Posts</h1>
|
||||||
|
|
||||||
{% for post in site.posts limit: 4 %}
|
<ol>
|
||||||
<li class="post" style="display: grid; font-size: 16px">
|
{% for post in site.posts limit: 4 %}
|
||||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
<li class="post" style="display: grid; font-size: 16px">
|
||||||
<small class="blog-date">{{ post.date_formatted }}</small>
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||||
</li>
|
<small class="blog-date">{{ post.date_formatted }}</small>
|
||||||
{% endfor %}
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="join-community material-card text">
|
<div class="join-community material-card text">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user