index.php 807 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. require_once("../api.php");
  3. require_once("../include/lib.php");
  4. $res = (array)get("top/illust");
  5. $out = ["title" => "トップ", "desc" => ""];
  6. ?>
  7. <?php include("../include/header.php"); ?>
  8. <div class="page">
  9. <?php
  10. foreach ($res["body"]->thumbnails->illust as $o) {
  11. ?>
  12. <div class="searchres">
  13. <a href="/artworks/?id=<?= $o->id ?>">
  14. <img src="<?= imgprx($o->url) ?>" alt="<?= $o->alt ?>" />
  15. <?= $o->title ?>
  16. </a>
  17. <br />
  18. <a href="/users/?id=<?= $o->userId ?>">
  19. <img src="<?= imgprx($o->profileImageUrl) ?>" alt="<?= $o->userName ?>" style="width: 24px; height: 24px;" />
  20. <?= $o->userName ?>
  21. </a>
  22. </div>
  23. <?php
  24. }
  25. ?>
  26. </div>
  27. <?php include("../include/footer.php"); ?>