Skip to content

Commit

Permalink
show-speaker-name-in-overview-mode
Browse files Browse the repository at this point in the history
reduce-space-between-imageicon-and-name-of-speaker

arrange-code-of-sessionitem.hbs

remove-inline-CSS
  • Loading branch information
sachinchauhan2889 committed Oct 17, 2020
1 parent bd881cd commit ed40dab
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions app/components/public/session-item.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,22 @@
{{/if}}
</div>
{{else}}
<div class="left floated ten wide column">
<div class="session-speakers">
{{#each @session.speakers as |speaker|}}
<img alt="speaker" class="ui mini avatar image" src="{{if speaker.iconImageUrl speaker.iconImageUrl (if speaker.photoUrl speaker.photoUrl '/images/placeholders/avatar.png')}}">
{{/each}}
<div class="left floated twelve wide column">
<div class="ui grid stackable">
<div class="session-speakers">
{{#each @session.speakers as |speaker|}}
<img alt="speaker" class="ui mini avatar image" src="{{if speaker.iconImageUrl speaker.iconImageUrl (if speaker.photoUrl speaker.photoUrl '/images/placeholders/avatar.png')}}">
{{/each}}
</div>
<div class="left floated nine wide column">
{{#each @session.speakers as |speaker|}}
{{speaker.name}} ({{speaker.position}}, {{speaker.organisation}})
<br>
{{/each}}
</div>
</div>
</div>
<div class="right floated six wide column">
<div class="right floated four wide column">
{{#if @session.startsAt}}
<div class=""><i class="icon map marker alternate"></i>{{@session.microlocation.name}}</div>
<div class="small text"><i class="wait icon"></i>{{general-date @session.startsAt @timezone 'hh:mm a / DD-MM-YYYY (z)'}}</div>
Expand Down

0 comments on commit ed40dab

Please sign in to comment.