Fix the image source variable call

This commit is contained in:
BackIsBachus 2016-05-16 11:03:00 +02:00
parent 4b73815990
commit a58559cda4
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<div class="card profile-card"><span class="profile-pic-container">
<div class="profile-pic">
{{#if r.info.image}}
<img data-src="holder.js/100x100" alt="{{{r.name}}}" src="{{r.info.image}}" itemprop="image" class="media-object img-circle center-block"/>
<img data-src="holder.js/100x100" alt="{{{r.name}}}" src="{{{r.info.image}}}" itemprop="image" class="media-object img-circle center-block"/>
{{/if}}
</div>
<div class="name-and-profession text-center"><h3 itemprop="name"><b>{{{r.name}}}</b></h3><h5 itemprop="jobTitle" class="text-muted">{{r.info.label}}</h5></div></span>