You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
567 B

  1. <?php $this->layout('layout-loggedin', ['title' => $title, 'accounts' => $accounts, 'user' => $user]); ?>
  2. <div class="ui main text container">
  3. <table class="ui striped table fixed single line">
  4. <thead>
  5. <th>Date</th>
  6. <th>Source &amp; Target</th>
  7. </thead>
  8. <?php foreach($webmentions as $mention): ?>
  9. <tr>
  10. <td><?= $mention['webmention']->created_at ?></td>
  11. <td><?= $this->e($mention['webmention']->source) ?><br><?= $this->e($mention['webmention']->target) ?></td>
  12. </tr>
  13. <?php endforeach; ?>
  14. </table>
  15. </div>