ニジカもんすたぁ!! トップ・ページ https://nizika.monster
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.
 
 
 
 

51 lines
1.9 KiB

  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
  7. <title>伊地知ニジカ放送局 - ニジカ返答ログ</title>
  8. </head>
  9. <body>
  10. <div class="container container-max-width my-5">
  11. <div class="mb-4">
  12. <?php require 'pagination.cmp.php' ?>
  13. </div>
  14. <div>
  15. <?php foreach (array_slice ($log_data,
  16. ($page - 1) * $length,
  17. $length,
  18. true) as $record): ?>
  19. <div class="mb-4">
  20. <div>
  21. <?= $record['date_time'] ?>
  22. </div>
  23. <div>
  24. <img src="<?= $record['chat_icon'] ?>" />
  25. <?= $record['chat_name'] ?>
  26. </div>
  27. <div style="color: blue">
  28. &gt; <span style="font-style: italic"><?= $record['chat_message'] ?></span>
  29. </div>
  30. <div>
  31. <?= $record['answer'] ?>
  32. </div>
  33. </div>
  34. <?php endforeach ?>
  35. </div>
  36. <div class="mt-5">
  37. <?php require 'pagination.cmp.php' ?>
  38. </div>
  39. </div>
  40. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
  41. </body>
  42. </html>