Skip to content
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

static/shared: add titles to social media links #98

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
48 changes: 42 additions & 6 deletions static/shared/header/header.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,48 @@
</div>
<p></p>
<div class="go-Header-socialIcons">
<a class="go-Header-socialIcon" aria-label="Get connected with google-groups (Opens in new window)" href="https://groups.google.com/g/golang-nuts" ><img src="/static/shared/logo/social/google-groups.svg" /></a>
<a class="go-Header-socialIcon" aria-label="Get connected with github (Opens in new window)" href="https://github.com/golang"><img src="/static/shared/logo/social/github.svg" /></a>
<a class="go-Header-socialIcon" aria-label="Get connected with twitter (Opens in new window)" href="https://twitter.com/golang"><img src="/static/shared/logo/social/twitter.svg" /></a>
<a class="go-Header-socialIcon" aria-label="Get connected with reddit (Opens in new window)" href="https://www.reddit.com/r/golang/"><img src="/static/shared/logo/social/reddit.svg" /></a>
<a class="go-Header-socialIcon" aria-label="Get connected with slack (Opens in new window)" href="https://invite.slack.golangbridge.org/"><img src="/static/shared/logo/social/slack.svg" /></a>
<a class="go-Header-socialIcon" aria-label="Get connected with stack-overflow (Opens in new window)" href="https://stackoverflow.com/collectives/go"><img src="/static/shared/logo/social/stack-overflow.svg" /></a>
<a
class="go-Header-socialIcon"
aria-label="Get connected with google-groups (Opens in new window)"
title="Get connected with google-groups (Opens in new window)"
href="https://groups.google.com/g/golang-nuts">
<img src="/static/shared/logo/social/google-groups.svg" />
</a>
<a
class="go-Header-socialIcon"
aria-label="Get connected with github (Opens in new window)"
title="Get connected with github (Opens in new window)"
href="https://github.com/golang">
<img src="/static/shared/logo/social/github.svg" />
</a>
<a
class="go-Header-socialIcon"
aria-label="Get connected with twitter (Opens in new window)"
title="Get connected with twitter (Opens in new window)"
href="https://twitter.com/golang">
<img src="/static/shared/logo/social/twitter.svg" />
</a>
<a
class="go-Header-socialIcon"
aria-label="Get connected with reddit (Opens in new window)"
title="Get connected with reddit (Opens in new window)"
href="https://www.reddit.com/r/golang/">
<img src="/static/shared/logo/social/reddit.svg" />
</a>
<a
class="go-Header-socialIcon"
aria-label="Get connected with slack (Opens in new window)"
title="Get connected with slack (Opens in new window)"
href="https://invite.slack.golangbridge.org/">
<img src="/static/shared/logo/social/slack.svg" />
</a>
<a
class="go-Header-socialIcon"
aria-label="Get connected with stack-overflow (Opens in new window)"
title=""
href="https://stackoverflow.com/collectives/go">
<img src="/static/shared/logo/social/stack-overflow.svg" />
</a>
</div>
</li>
</ul>
Expand Down