diff --git a/public/about/index.jade b/public/about/index.jade index b6b429b178..1150e51a56 100644 --- a/public/about/index.jade +++ b/public/about/index.jade @@ -22,7 +22,7 @@ for person, name in bios if person.type == type .c3 - md-card(biocard class="bio-card" website="#{person.website}" twitter="#{person.twitter}" pic="#{person.picture}" bio="#{person.bio}" name="#{person.name}") + md-card(biocard class="bio-card" website=person.website twitter=person.twitter pic=person.picture bio=person.bio name=person.name) header image(src="#{person.picture}" alt="#person.name") diff --git a/public/resources/js/directives/bio.js b/public/resources/js/directives/bio.js index e968abcb98..71727c8a55 100644 --- a/public/resources/js/directives/bio.js +++ b/public/resources/js/directives/bio.js @@ -33,11 +33,11 @@ angularIO.directive('biocard', function($rootScope, $timeout, $mdDialog) { ' ' + '

{{bio}}

' + ' ' + - '
' + + ' ' + ' ' + ' Close Bio' + ' ' + - '
' + + ' ' + '' }); });