
<div class="row no-gutters border-bottom mb-4 p-2 bg-light media comment_bs<?= $this->class ?>" id="<?= $this->id ?>">
  <div class="col-2"><img class="mr-3 img-thumbnail" src="<?= $this->getContainer()->get('contao_bootstrap.templates.view.gravatar')->generateUrl($this->email) ?>" alt="<?= \Contao\StringUtil::specialchars($this->name) ?>"></div>
  <div class="media-body col pl-3">
  <p class="info small"><?= $this->by ?> <?php if ($this->website): ?><a href="<?= $this->website ?>" target="_blank" rel="nofollow noreferrer noopener"><?php endif; ?><?= $this->name ?><?php if ($this->website): ?></a><?php endif; ?> | <time datetime="<?= $this->datetime ?>" class="date"><?= $this->date ?></time></p>
  <div class="comment border-bottom"><?= $this->comment ?></div>

  <?php if ($this->addReply): ?>
    <div class="media mt-3 reply">
      <div class="col-3"><img class="img-thumbnail mr-3" src="<?= $this->getContainer()->get('contao_bootstrap.templates.view.gravatar')->generateUrl($this->author->email) ?>" alt="<?= \Contao\StringUtil::specialchars($this->author->name) ?>"></div>
      <div class="media-body col pl-2">
        <p class="info small"><?= $this->rby ?> <?= $this->author->name ?></p>
        <div class="comment"><?= $this->reply ?></div>
      </div>
    </div>
    <?php endif; ?>
  </div>
</div>
