Skip to content

Commit

Permalink
Merge pull request #338 from CTPUG/sponsor-name
Browse files Browse the repository at this point in the history
Add sponsor name as a title of their logo (in case it's too tiny to read)
  • Loading branch information
stefanor committed Jan 26, 2017
2 parents 7e2a971 + 4f0c223 commit 18cc987
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wafer/sponsors/templates/wafer.sponsors/sponsors_block.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
<li>
{% sponsor_image_url sponsor "logo" as logo_url %}
{% if logo_url != '' %}
<img src="{{ logo_url }}" alt="{{ sponsor.name }}">
<img src="{{ logo_url }}"
alt="{{ sponsor.name }}"
title="{{ sponsor.name }}">
{% else %}
<span class="nologo">{{ sponsor.name }}</span>
{% endif %}
Expand Down

0 comments on commit 18cc987

Please sign in to comment.