Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Stavrow <angelo@fogcreek.com>2018-08-29 23:45:40 +0300
committerAngelo Stavrow <angelo@fogcreek.com>2018-08-29 23:45:40 +0300
commit278387b6e3abda1c7d48c395cb80b5581699c47c (patch)
tree9a378317a2f8dd3d4a949dc43c4e9a3b0a0cc7cd /layouts
parent465dac4107085884512b3b93fdd4dc15e2a545fc (diff)
Convert social icons to flexbox per #10
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/social.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index ddac2b1..51fc208 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -1,37 +1,37 @@
<aside id="social">
<div id="social-icons">
<div class="icon-24x24">
- <a class="glyph" alt="Email me" href="mailto:{{ .Site.Params.EmailAddress }}"><img src="/icons/envelope.svg" width="24px"></a>
+ <a class="glyph" alt="Email me" href="mailto:{{ .Site.Params.EmailAddress }}"><img src="/icons/envelope.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Facebook profile" href="{{ .Site.Params.FacebookUser }}"><img src="/icons/facebook.svg" width="24px"></a>
+ <a class="glyph" alt="Facebook profile" href="{{ .Site.Params.FacebookUser }}"><img src="/icons/facebook.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Flickr profile" href="https://flickr.com/people/{{ .Site.Params.FlickrUser }}"><img src="/icons/flickr.svg" width="24px"></a>
+ <a class="glyph" alt="Flickr profile" href="https://flickr.com/people/{{ .Site.Params.FlickrUser }}"><img src="/icons/flickr.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="GitHub profile" href="https://github.com/{{ .Site.Params.GitHubUser }}"><img src="/icons/github.svg" width="24px"></a>
+ <a class="glyph" alt="GitHub profile" href="https://github.com/{{ .Site.Params.GitHubUser }}"><img src="/icons/github.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="GitLab profile" href="https://gitlab.com/{{ .Site.Params.GitLabUser }}"><img src="/icons/gitlab.svg" width="24px"></a>
+ <a class="glyph" alt="GitLab profile" href="https://gitlab.com/{{ .Site.Params.GitLabUser }}"><img src="/icons/gitlab.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Glitch profile" href="https://glitch.com/@{{ .Site.Params.GlitchUser }}"><img src="/icons/glitch.svg" width="24px"></a>
+ <a class="glyph" alt="Glitch profile" href="https://glitch.com/@{{ .Site.Params.GlitchUser }}"><img src="/icons/glitch.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Keybase profile" href="https://keybase.io/{{ .Site.Params.KeybaseUser }}"><img src="/icons/keybase.svg" width="24px"></a>
+ <a class="glyph" alt="Keybase profile" href="https://keybase.io/{{ .Site.Params.KeybaseUser }}"><img src="/icons/keybase.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/{{ .Site.Params.MicroBlogUser }}"><img src="/icons/microblog.svg" width="24px"></a>
+ <a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/{{ .Site.Params.MicroBlogUser }}"><img src="/icons/microblog.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Stack Overflow profile" href="https://stackoverflow.com/users/{{ .Site.Params.StackOverflowUser }}"><img src="/icons/stack-overflow.svg" width="24px"></a>
+ <a class="glyph" alt="Stack Overflow profile" href="https://stackoverflow.com/users/{{ .Site.Params.StackOverflowUser }}"><img src="/icons/stack-overflow.svg" height="24px" width="24px"></a>
</div>
<div class="icon-24x24">
- <a class="glyph" alt="Tumblr profile" href="https://{{ .Site.Params.TumblrUser }}.tumblr.com/"><img src="/icons/tumblr.svg" width="24px"></a>
+ <a class="glyph" alt="Tumblr profile" href="https://{{ .Site.Params.TumblrUser }}.tumblr.com/"><img src="/icons/tumblr.svg" height="24px" width="24px"></a>
</div>
- <div class="icon-24x24 last">
- <a class="glyph" alt="Twitter profile" href="https://twitter.com/{{ .Site.Params.TwitterUser }}"><img src="/icons/twitter.svg" width="24px"></a>
+ <div class="icon-24x24">
+ <a class="glyph" alt="Twitter profile" href="https://twitter.com/{{ .Site.Params.TwitterUser }}"><img src="/icons/twitter.svg" height="24px" width="24px"></a>
</div>
</div>
</aside>