wip: use ForkAwesome fonts for the contact list

This commit is contained in:
Gergely Polonkai 2018-08-13 12:43:06 +02:00
parent af4fbf2ce8
commit b0c029ef57
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93
2 changed files with 14 additions and 1 deletions

View File

@ -1,42 +1,55 @@
- text: E-mail - text: E-mail
link: mailto:gergely@polonkai.eu link: mailto:gergely@polonkai.eu
image: email.png image: email.png
icon: envelope-o
- text: Stack Exchange - text: Stack Exchange
link: http://stackexchange.com/users/1369500/gergelypolonkai link: http://stackexchange.com/users/1369500/gergelypolonkai
image: stackexchange.png image: stackexchange.png
icon: stack-exchange
- text: LinkedIn - text: LinkedIn
link: http://www.linkedin.com/in/gergelypolonkai link: http://www.linkedin.com/in/gergelypolonkai
image: linkedin.png image: linkedin.png
icon: linkedin
- text: Skype - text: Skype
link: skype:gergely.polonkai link: skype:gergely.polonkai
image: skype.png image: skype.png
icon: skype
- text: Facebook - text: Facebook
link: http://facebook.com/Polesz link: http://facebook.com/Polesz
image: facebook.png image: facebook.png
icon: facebook
- text: Google+ - text: Google+
link: https://plus.google.com/+GergelyPolonkai/about link: https://plus.google.com/+GergelyPolonkai/about
image: google_plus.png image: google_plus.png
icon: google-plus
- text: Twitter - text: Twitter
link: http://twitter.com/GergelyPolonkai link: http://twitter.com/GergelyPolonkai
image: twitter.png image: twitter.png
icon: twitter
- text: Tumblr - text: Tumblr
link: http://gergelypolonkai.tumblr.com link: http://gergelypolonkai.tumblr.com
image: tumblr.png image: tumblr.png
icon: tumblr
- text: deviantArt - text: deviantArt
link: http://gergelypolonkai.deviantart.com link: http://gergelypolonkai.deviantart.com
image: deviantart.png image: deviantart.png
icon: deviantart
- text: Hashnode - text: Hashnode
link: https://hashnode.com/@gergelypolonkai link: https://hashnode.com/@gergelypolonkai
image: hashnode.png image: hashnode.png
- text: Keybase - text: Keybase
link: https://keybase.io/gergelypolonkai link: https://keybase.io/gergelypolonkai
image: keybase.png image: keybase.png
icon: keybase
- text: Liberapay - text: Liberapay
link: https://liberapay.com/gergelypolonkai link: https://liberapay.com/gergelypolonkai
image: liberapay.png image: liberapay.png
icon: liberapay
- text: Mastodon - text: Mastodon
link: https://social.polonkai.eu/@gergely link: https://social.polonkai.eu/@gergely
image: mastodon.png image: mastodon.png
icon: mastodon
- text: Pay me a coffee - text: Pay me a coffee
link: https://paypal.me/GergelyPolonkai/250 link: https://paypal.me/GergelyPolonkai/250
image: paypal.png image: paypal.png
icon: paypal

View File

@ -24,7 +24,7 @@
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="glyphicon glyphicon-pencil"></span> Contact me <span class="caret"></span></a> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><span class="glyphicon glyphicon-pencil"></span> Contact me <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu"> <ul class="dropdown-menu" role="menu">
{% for contact in site.data.contacts %} {% for contact in site.data.contacts %}
<li><a href="{{contact.link}}" target="_blank"><img src="{{'/images/contact/' | prepend: site.baseurl | append: contact.image}}" alt="" /> {{contact.text}}</a></li> <li><a href="{{contact.link}}" target="_blank"><i class="fa fa-{{ contact.icon }}"></i> <img src="{{'/images/contact/' | prepend: site.baseurl | append: contact.image}}" alt="" /> {{contact.text}}</a></li>
{% endfor %} {% endfor %}
<li><a href="{{'/blog/atom.xml' | prepend: site.baseurl}}"><img src="{{'/images/contact/feed.png' | prepend: site.baseurl}}" alt="" /> RSS Feed</a></li> <li><a href="{{'/blog/atom.xml' | prepend: site.baseurl}}"><img src="{{'/images/contact/feed.png' | prepend: site.baseurl}}" alt="" /> RSS Feed</a></li>
</ul> </ul>