-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ARIA attribute added to website for accessibility #336
base: main
Are you sure you want to change the base?
Changes from all commits
fb1680b
1770329
bc2156a
be86b46
d3aa5a3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,10 @@ <h1>Resources</h1> | |
class="thumbnailbox {{ page.topic }} {{ page.medium }} {{page.language}}" | ||
> | ||
<article> | ||
<img class="thumbnail" src="{{page.image-thumb}}" alt="{% if | ||
<img | ||
class="thumbnail" | ||
src="{{page.image-thumb}}" | ||
alt="{% if | ||
page.image-alt %}{{ page.image-alt }} {% else %} '' {% endif %} " | ||
/> | ||
<h3 class="thumbnailtitle"> | ||
|
@@ -95,7 +98,10 @@ <h3 class="thumbnailtitle"> | |
class="thumbnailbox {{ page.topic }} {{ page.medium }} {{page.language}}" | ||
> | ||
<article> | ||
<img class="thumbnail" src="{{page.image-thumb}}" alt="{% if | ||
<img | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't seem to be related to ARIA? |
||
class="thumbnail" | ||
src="{{page.image-thumb}}" | ||
alt="{% if | ||
page.image-alt %}{{ page.image-alt }} {% else %} '' {% endif %} " | ||
/> | ||
<h3 class="thumbnailtitle"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,11 +105,11 @@ <h1>{{page.title}}</h1> | |
<a | ||
rel="license" | ||
href="http://creativecommons.org/licenses/{{ page.license | remove: 'CC ' | downcase | replace: ' ', '/' }}/" | ||
> | ||
> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems unrelated to PR, please remove. |
||
<img | ||
alt="Creative Commons License" | ||
src="http://i.creativecommons.org/l/{{ page.license | remove: 'CC ' | downcase | replace: ' ', '/' }}/88x31.png" | ||
/> | ||
/> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sees unrelated to PR, please remove. |
||
</a> | ||
<p> | ||
{% if page.downloadurl %} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem to be related to ARIA?