Add alt text to syndication buttons

This commit is contained in:
Kyle Mahan 2015-08-22 09:50:35 -07:00
parent d179c1bd03
commit fce4f0b471

View file

@ -14,7 +14,7 @@
{% for target in current_user.get_setting('syndicate-to', []) %}
<div class="syndication-toggle">
<input id="sc-{{entry.id}}-{{loop.index}}" type="checkbox" name="syndicate-to[]" value="{{ target }}"{% if entry is syndicated_to(target) %} checked{% endif %} />
<label for="sc-{{entry.id}}-{{loop.index}}"><img src="{{ target | favicon_for_url }}" /></label>
<label for="sc-{{entry.id}}-{{loop.index}}"><img src="{{ target | favicon_for_url }}" alt="{{ target }}" /></label>
</div>
{% endfor %}
</div>