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

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