Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Shared layout images and homepage images given alt attributes #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
61,000
</div>
<div class="icon-box_icon">
<img src="~/img/developers_icon.png">
<img src="~/img/developers_icon.png" alt="Contributors">
</div>
<div class="icon-box_label">
Contributors
Expand All @@ -55,7 +55,7 @@
3700
</div>
<div class="icon-box_icon">
<img src="~/img/building_icon.png">
<img src="~/img/building_icon.png" alt="Companies">
</div>
<div class="icon-box_label">
Companies
Expand All @@ -68,7 +68,7 @@
56
</div>
<div class="icon-box_icon">
<img src="~/img/member_projects_icon.png">
<img src="~/img/member_projects_icon.png" alt="Active projects">
</div>
<div class="icon-box_label">
Active Projects
Expand All @@ -81,7 +81,7 @@
462
</div>
<div class="icon-box_icon">
<img src="~/img/github_icon.png">
<img src="~/img/github_icon.png" alt="Resources">
</div>
<div class="icon-box_label">
Resources
Expand All @@ -100,21 +100,21 @@
</div>
<div class="page-section_row row">
<div class="page-section_column page-section_column--narrow col-md-4 pad-fix--all text-center">
<img src="~/img/comp.png">
<img src="~/img/comp.png" alt="Projects">
<h3>Projects</h3>
<p>
There&apos;s a growing list of projects that are currently taking advantage of our open-source Foundation, benefitting from commercially friendly IP, copyright terms, and licenses.
</p>
</div>
<div class="page-section_column page-section_column--narrow col-md-4 pad-fix--all text-center">
<img src="~/img/globe_icon.png">
<img src="~/img/globe_icon.png" alt="Community">
<h3>Community</h3>
<p>
We work not only with Microsoft, but with the broader industry to increase exposure of .NET&apos;s capabilities. All our resources are designed to support developers and your projects, and help promote your endeavors with like-minded folks!
</p>
</div>
<div class="page-section_column page-section_column--narrow col-md-4 pad-fix--all text-center">
<img src="~/img/Ellipse_1.png">
<img src="~/img/Ellipse_1.png" class="Non-profit">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's this CSS class do? Did you mean to do an alt tag here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost certainly, will fix tonight.

<h3>Non-Profit</h3>
<p>
The .NET Foundation is a 501(c)(6) non-profit organization, which was established to support an innovative, commercially friendly, open-source ecosystem around the .NET platform.
Expand All @@ -128,7 +128,7 @@
<div class="page-section_row row">
<div class="page-section_column col-sm-5 text-center" id="home-meetup_container">
<h2>.NET Foundation sponsored</h2>
<img id="home-meetup_image" src="~/img/meetup_logo.png">
<img id="home-meetup_image" src="~/img/meetup_logo.png" alt="Meetup logo">
<p>
Developers meet every day, across the world, in .NET user groups. <u>Join a group</u>&mdash;or a few!&mdash;to swap knowledge, discover opportunities, or find your next hire.
</p>
Expand Down Expand Up @@ -182,7 +182,7 @@
<div class="page-section_column col-md-1 pad-fix--none">
</div>
<div class="page-section_column col-md-4 text-center pad-fix_add--md d-flex align-items-center justify-content-center">
<img src="~/img/dot_bot.png" id="home-bot_image">
<img src="~/img/dot_bot.png" id="home-bot_image" alt="Dot Net Bot">
</div>
<div class="page-section_column col-md-6 pad-fix--md text-center">
<h2>Start kicking out code!</h2>
Expand Down
4 changes: 2 additions & 2 deletions src/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<div class="site-nav_container container">
<nav class="navbar navbar-expand-md align-items-end">
<a class="navbar-brand" href="/"><img id="site-logo" src="/img/dotNetFoundationHorizontal.svg"></a>
<a class="navbar-brand" href="/"><img id="site-logo" src="/img/dotNetFoundationHorizontal.svg" alt=".NET Foundation"></a>
<button class="main-menu_toggle navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
Expand Down Expand Up @@ -140,7 +140,7 @@
<div id="site-footer_container" class="container">
<div class="site-footer_row row">
<div class="col-12 d-flex justify-content-between">
<img src="/img/Logo_footer.png">
<img src="/img/Logo_footer.png" alt=".NET Foundation">
<ul id="site-footer_menu" class="align-self-end">
<li><a href="/Privacy-Policy">Privacy Policy</a></li>
<li><a href="/Code-Of-Conduct">Code of Conduct</a></li>
Expand Down