{{#if (and show.about.people.firstObject.image displayHostIfAvailable)}}
  <img
    onClick={{action this.handleClick}}
    aria-hidden="true"
    role="button"
    alt={{altText}}
    src={{image-template show.about.people.firstObject.image.template width height show.about.people.firstObject.image.crop}}>
{{else}}
  {{#if show.image.url}}
    <img
      onClick={{action this.handleClick}}
      aria-hidden="true"
      role="button"
      alt={{show.title}}
      src={{show.image.url}}>
  {{else}}
    {{#if stream.imageLogo}}
      <img
        onClick={{action this.handleClick}}
        aria-hidden="true"
        role="button"
        alt={{stream.name}}
        src={{stream.imageLogo}}>
    {{/if}}
  {{/if}}
{{/if}}

{{yield}}