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

47 lines
1.8 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 mt-5">
  11. <?php require 'pagination.cmp.php' ?>
  12. <div>
  13. <?php foreach (array_slice ($log_data,
  14. ($page - 1) * $length,
  15. $length,
  16. true) as $record): ?>
  17. <div class="mb-4">
  18. <div>
  19. <?= $record['date_time'] ?>
  20. </div>
  21. <div>
  22. <img src="<?= $record['chat_icon'] ?>" />
  23. <?= $record['chat_name'] ?>
  24. </div>
  25. <div style="color: blue">
  26. &gt; <span style="font-style: italic"><?= $record['chat_message'] ?></span>
  27. </div>
  28. <div>
  29. <?= $record['answer'] ?>
  30. </div>
  31. </div>
  32. <?php endforeach ?>
  33. </div>
  34. <?php require 'pagination.cmp.php' ?>
  35. </div>
  36. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
  37. </body>
  38. </html>