diff options
| author | Sachi Jain <jainsachi1202@gmail.com> | 2026-03-22 20:23:13 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-22 15:53:13 +0100 |
| commit | 62d09a2c53dd9571a7d667737426a39486847fa2 (patch) | |
| tree | a1327fe9f784f126d375c07ea8a0d19f3ca13fa5 | |
| parent | 56550e0befc5d993578d6f289e934b63a869bdf4 (diff) | |
Fixed the missing labels for community images. (#2555)
| -rw-r--r-- | djangoproject/templates/aggregator/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/djangoproject/templates/aggregator/index.html b/djangoproject/templates/aggregator/index.html index 064e260a..709703e1 100644 --- a/djangoproject/templates/aggregator/index.html +++ b/djangoproject/templates/aggregator/index.html @@ -9,7 +9,7 @@ <div class="community-cta-wrapper"> <a href="https://forum.djangoproject.com/" class="community-cta-a"> <div class="community-cta"> - <div> + <div aria-hidden="true"> {% include "svg_logos/forum.html" %} </div> <h3>{% translate "Forum - Post a question" %}</h3> @@ -17,7 +17,7 @@ </a> <a href="https://chat.djangoproject.com" class="community-cta-a"> <div class="community-cta"> - <div> + <div aria-hidden="true"> {% include "svg_logos/discord.html" %} </div> <h3>{% translate "Discord - Chat with us" %}</h3> @@ -29,7 +29,7 @@ <div class="community-cta-wrapper"> <a href="{% url "community-ecosystem" %}" class="community-cta-a"> <div class="community-cta"> - <div> + <div aria-hidden="true"> {% include "svg_logos/package.html" %} </div> <h3>{% translate "Package Ecosystem" %}</h3> @@ -41,7 +41,7 @@ <div class="community-cta-wrapper"> <a href="{% url 'document-detail' lang='en' version='dev' url='internals/contributing/bugs-and-features' host 'docs' %}#reporting-bugs" class="community-cta-a"> <div class="community-cta"> - <div> + <div aria-hidden="true"> {% include "svg_logos/bug.html" %} </div> <h3>{% translate "Report an issue" %}</h3> @@ -49,7 +49,7 @@ </a> <a href="{% url 'document-detail' lang='en' version='dev' url='internals/contributing' host 'docs' %}" class="community-cta-a"> <div class="community-cta"> - <div> + <div aria-hidden="true"> {% include "svg_logos/notepad.html" %} </div> <h3>{% translate "Contribute to Django" %}</h3> @@ -57,7 +57,7 @@ </a> <a href="/community/local/" class="community-cta-a"> <div class="community-cta"> - <div> + <div aria-hidden="true"> {% include "svg_logos/world.html" %} </div> <h3>{% translate "Local Django Community" %}</h3> |
