Commit 3ae03f56 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #6012 from jvanbaarsen/social_clickable

Made the skype and twitter username clickable
parents 9f73388f b471122f
......@@ -8,7 +8,7 @@
- unless user.skype.blank?
%li
%span.light Skype:
%strong= user.skype
%strong= link_to user.skype, "skype:#{user.skype}"
- unless user.linkedin.blank?
%li
%span.light LinkedIn:
......@@ -16,7 +16,7 @@
- unless user.twitter.blank?
%li
%span.light Twitter:
%strong= user.twitter
%strong= link_to user.twitter, "http://www.twitter.com/#{user.twitter}"
- unless user.bio.blank?
%li
%span.light Bio:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment