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.

25 lines
1.0 KiB

  1. <?php $this->layout('layout-loggedin', ['title' => $title, 'accounts' => $accounts, 'user' => $user]); ?>
  2. <div class="ui main text container" style="margin-top: 80px;">
  3. <table class="ui striped table single line">
  4. <thead>
  5. <th>Status</th>
  6. <th>Date</th>
  7. <th>Source &amp; Target</th>
  8. </thead>
  9. <tbody>
  10. <?php foreach($webmentions as $mention): ?>
  11. <tr<?= $mention['status'] == 'pending' ? ' class="warning"' : '' ?>>
  12. <td><i class="<?= $mention['icon'] ?> icon"></i></td>
  13. <td><a href="/webmention/<?= $mention['webmention']->token ?>/details"><?= date('M j, g:ia', strtotime($mention['webmention']->created_at)) ?></a></td>
  14. <td>
  15. source=<a href="<?= $this->e($mention['webmention']->source) ?>"><?= $this->e($mention['webmention']->source) ?></a><br>
  16. target=<a href="<?= $this->e($mention['webmention']->source) ?>"><?= $this->e($mention['webmention']->target) ?></a>
  17. </td>
  18. </tr>
  19. <?php endforeach; ?>
  20. </tbody>
  21. </table>
  22. </div>