Skip to content

Commit

Permalink
slight change to display github account
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardclau committed Jan 22, 2012
1 parent 817a6b8 commit cd0ca28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/SFBCN/WebsiteBundle/Controller/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public function aboutAction()
$members = array(
array(
'name' => 'Ricard Clau',
'email' => 'ricard.clau@gmail.com',
'email' => 'ricard.clau[at]gmail[dot]com',
'foto' => 'https://secure.gravatar.com/avatar/2d5aaa5bfc55afb812af6693826e382b?s=140&d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png',
'github' => 'https://github.com/ricardclau',
'github' => 'ricardclau',
'twitter' => 'ricardclau',
),
array(
Expand All @@ -61,7 +61,7 @@ public function aboutAction()
'name' => 'Adán Lobato',
'email' => 'adan.lobato[at]gmail[dot]com',
'foto' => 'http://1.gravatar.com/avatar/4295f5a4b169152d287fc4009d1afb19?size=140',
'github' => 'https://github.com/adanlobato',
'github' => 'adanlobato',
'twitter' => 'adanlobato',
),
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
<h2>{{ member.name }}</h2>
<p>{% if member.email is defined %}{{ member.email }}{% endif %}</p>
<p>{% if member.github is defined %}{{ member.github }}{% endif %}</p>
<p>{% if member.github is defined %}<a href="https://github.com/{{ member.github }}">{{ member.github }}</a>{% endif %}</p>
<p>{% if member.twitter is defined %}<a href="http://twitter.com/#!/{{ member.twitter }}">{{ member.twitter }}</a>{% endif %}</p>
</div>
{% if loop.index is divisibleby(2) %}<div class="clear"></div>{% endif %}
Expand Down

0 comments on commit cd0ca28

Please sign in to comment.