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.

23 lines
874 B

  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. <?php foreach($webmentions as $mention): ?>
  10. <tr<?= $mention['status'] == 'pending' ? ' class="warning"' : '' ?>>
  11. <td><i class="<?= $mention['icon'] ?> icon"></i></td>
  12. <td><a href="/webmention/<?= $mention['webmention']->token ?>/details"><?= date('M j, g:ia', strtotime($mention['webmention']->created_at)) ?></a></td>
  13. <td>
  14. source=<?= $this->e($mention['webmention']->source) ?><br>
  15. target=<?= $this->e($mention['webmention']->target) ?></td>
  16. </tr>
  17. <?php endforeach; ?>
  18. </table>
  19. </div>