Made the skype and twitter username clickable
* I was not able to link the linkedin username, since linkedin does not provide predictable URLS * The skype url will start skype, and asks if you want to call the particular user. * The Twitter link will just go to the twitter profile of the given user
This commit is contained in:
parent
cb589d231a
commit
b471122f3e
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue