app/views/user/settings.volt: adding LinkedIn button
This commit is contained in:
parent
f4659ff549
commit
f2774f180d
1 changed files with 4 additions and 3 deletions
|
|
@ -1,8 +1,9 @@
|
|||
{%
|
||||
set social_links = [
|
||||
'github' : [ 'connected': user.getGithubId() > 0 ],
|
||||
'gitlab' : [ 'connected': user.getGitlabId() > 0, 'class': 'text-gitlab' ],
|
||||
'google' : [ 'connected': user.getGoogleId() > 0, 'class': 'text-google' ]
|
||||
'github' : [ 'connected': user.getGithubId() > 0 ],
|
||||
'gitlab' : [ 'connected': user.getGitlabId() > 0, 'class': 'text-gitlab' ],
|
||||
'google' : [ 'connected': user.getGoogleId() > 0, 'class': 'text-google' ],
|
||||
'linkedin' : [ 'connected': user.getLinkedinId() | length, 'class': 'text-linkedin' ]
|
||||
]
|
||||
%}
|
||||
|
||||
|
|
|
|||
Reference in a new issue